This tutorial will show you how to give your forms a little bit more power. By making your forms self-referencing, you can open up whole new areas of functionality with your web applications.
ASP Forms Tutorial ASP / Getting Started
Forms are used all over the web to collect data you can see forms on work at this site, amazon and millions of others too. Googles front page uses a text form for users to query it's massive database.
A New Forms Solution Using Perl or FrontPage ASP / Emailing
Email forms are frequently used to send messages back to the webmaster and are sometimes used as a mechanism for capturing data, bypassing the need for a local database.
Fight Against SQL Injection Attacks ASP / Database Integration
Security issues became more damageful if you're not protecting your web forms. Following example is a good idea to protect our ASP pages against SQL injection attacks. This small ASP code secures and validates all information coming from your forms.
Basic form handling ASP / Web Forms
In this tutorial, we will look at how we can collect and begin to process data from submitted forms on your website.
Write and Read A Cookie ASP / Cookies and Sessions
Cookies enable you to write text directly to a users computer. This can be used to easily recognize if a user has been to your site before or used to prevent multiple entries in to forms.
Forms - Check Boxes ASP / Web Forms
The checkbox object is coded along the same lines as radio buttons, however each checkbox must get its own unique name since the state of "checked" or "not checked" will be passed to ASP for each box. Remember that you can set more than one option to be checked.
Active Server Pages tutorial for beginners ASP / Getting Started
This tutorial will show you Active Server Pages. Main topics include: What are Active Server Pages?, Displaying Date, Time, and Text, Using Variables, and Forms, and Active Server Pages Server-Side Scripting Programmer's Reference. It also includes several useful scripts.
Self Submitting Pages ASP / Web Forms
A very important coding method to understand when developing ASP pages is the page that submits to itself. This technique is very powerful and can drastically reduce the number of files you have to maintain and the number of places in which you need to make changes when maintaining code. The concept is simple. Using forms, set the action value to the URL of the page in which the form resides. Then use ASP code to determine what the current state of the page is, and present the proper output to the user.
Presentation Of Hierarchical Data ASP / Database Integration
It is very common to see hierarchical data in many of the forms used in web applications. The data is presented to the user in combo boxes. When the user selects the data in the first level combo box, the next level combo box gets filled with the data that is associated to the selected value in the previous level combo box.