|
Read Clicked Checkboxes Function
|
Other links at ASP > Tutorials > Form Processing |
| 1. |
Read Clicked Checkboxes Function
|
|
|
When using checkboxes for selecting multiple items, there is an efficient way to read all the clicked checkboxes and return a string of their values.
|
| 2. |
Self Submitting Pages
|
|
|
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, and present the proper output to the user.
|
| 3. |
An easy way to JMail forms
|
|
|
Use this quick wizard-like form to actually build a form that sends email using JMail. In a couple of minutes you will be able to recieve feedback.
|
| 4. |
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.
|
| 5. |
Basic Forms
|
|
|
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.
|
|
|