Checkboxes, first of all, are just that. A little square box, created in HTML as a part of the form you are building and for the most part, they allow the user to make some/any/all/none of them 'checked' or not. That is, unlike radio buttons where the user is allowed to check only one radio button per family (like MALE (x) FEMALE( )) a series of checkboxes can be either checked or not by the user in any number of ways....
Dropdowns or combo boxes are an excellent way to get input from a user. One of the biggest problems with user input is spelling and formatting. Here is how to use and populate dropdowns from a database....
This is a very useful function for users that wishes to use dynamic combo boxes, this function has the capability to be a standard combo box or the capability of appearing selected in the value we pass a value normal used in Edit Scripts....
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...
This is a great basic function that I created when I was using Combo Boxes quite often. You will be required to pass the following parameters to this function....
Filling a combo box with results a database query is something that ASP developers need to do often. This script will present an example of how to do just this. It's something every beginner should read and implement!...