ASP.NET Server-Side Data Acces
Introduction to Server-Side Data
Connections, Commands, and DataSets
Accessing SQL-based Data
Binding SQL Data to a DataGrid
Performing a Parameterized Select
Inserting Data in a SQL Database
Updating Data in a SQL Database
Deleting Data in a SQL Database
Sorting Data from a SQL Database
Working with Master-Detail Relationships
Writing and Using Stored Procedures
Accessing XML-based Data
Section Summary
Read more
Java security, Part 1 Crypto basics
There is perhaps no software engineering topic of more timely importance than application security. Attacks are costly, whether the attack comes from inside or out, and some attacks can expose a software company to liability for damages. As computer (and especially Internet) technologies evolve, security attacks are becoming more sophisticated and frequent. Staying on top of the most up-to-date techniques and tools is one key to application security; the other is a solid foundation in proven technologies such as data encryption, authentication, and authorization.
Read more
What Perl Programmers Should Know About Java
What should Perl programmers know about Java? It depends. Not knowing Java will not slow you down as a Perl programmer. However, Java is a popular and rapidly growing language, so there’s a good chance that you will find yourself using Java systems or writing applications that need to interact with them. In some situations, writing a Java application may be a good way to accomplish something that you cannot easily do in Perl.
Read more
Introduction to Java threads
This tutorial explores the basics of threads — what they are, why they are useful, and how to get started writing simple programs that use them. We will also explore the basic building blocks of more sophisticated threading applications — how to exchange data between threads, how to control threads, and how threads can communicate with each other.
Read more
VBScript Tutorial
- VBScript is a script version of visual basic supported by Internet Explore 3.0 and above. VB Script code is interpreted as an script by the browser.
- VBScript uses Visual Basic terms, for example, declaring a variable, writing sub, or function in VB Script is similar to Visual Basic.
- But Visual Basic is programming language for applications; while VB Script is a small script version coded with HTML or ASP documents.
- With VB Script, you can make your web site dynamic and interactive.
- VBScript is particularly valuable when used with Microsoft Web servers to create Active Server Pages (ASP) - a technology that
allows a server-side script to create dynamic content that is sent to the client’s browser.
Read more