|
An easy way to CDONTS forms
|
Other links at ASP > Tutorials > Form Processing |
| 1. |
Powerful email address validation
|
|
|
Validating Email addresses is not limitted to finding "@" and "." signs in the address! There are higher concepts, but few are aware of them. This article shows you a simple way to check if the Email address provided by a user is "real" to a higher extent than current famous validation codes do.
|
| 2. |
Request.Form and Stack Overflow
|
|
|
Full VBS code, which lets you accept x-www-form-urlencoded forms in ASP without limit of size using BinaryRead (Request.Form has 100kB limit), recomended solution from MS KB (Q273482). Source of URLDecode function included.
|
| 3. |
Forms - Check Boxes
|
|
|
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.
|
| 4. |
Creating Dependent Select Objects With ASP
|
|
|
Select boxes must often communicate with one another (i.e., a Child select objects 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.
|
| 5. |
Basic Form Handling
|
|
|
A quick tutorial to show you the basics of form submission and handling.
|
|
|