Handling forms and processing the data you get from them is one of the fundamentals that need to be mastered if you are to develop a dynamic site. This is a very simple introductory tutorial on form handling.
This tutorial shows you how to automatically censor specific words on posts for message boards or guestbooks when posted. It provides a function called CensorStr to do the job.
This article discusses how to deal with various checkboxes in form via ASP. Covers: The Default No-Frills Checkbox, Checkbox With An Associated Value, Multiple Checkboxs With The Same Name, and Checkbox Which Maintains It's State.
Select boxes must often communicate with one another (i.e., a Child select object's option values depend on the value selected in the Parent object). This tutorial details how to create a hierarchy of select objects using ASP, SQL, ADO, and JavaScript.
In this final part of ASP Form Handling series, the author discusses such topics as handling radio buttons and check boxes, emailing attachments with CDONTS, and some ways of using the data stored in the registration database covered in Part 3.
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. Complete source code provided for the example.
This article shows how to build a forms validation library using JavaScript and ASP. Its FormLib simplifies form creation and eliminates common forms-maintenance tasks.