The RadioButtonList is used to display a list of radio buttons, of which only one can be selected.
| Home | Archive | Categories | Tags | About |
|
The RadioButtonList is used to display a list of radio buttons, of which only one can be selected.
One interesting characteristic of the ASP.Net Forms architecture is the postback. What happens is anytime you click a button, or trigger other sorts of events, you trigger what is known as a postback. The form is resubmitted back to the server, server side logic is processed, and the entire form is rerendered. This page discusses the postback.
The Panel object is the ASP.Net equivalent to the HTML FieldSet object. It's used to create a box. It has other capabilities as well.
A description of the ListView control. A control designed to replace the GridView control.
The Object Datasource is an object which binds a gui object to a specially written business object. Used by data driven controls like ListViews, DropdownLists, really... anything that binds to data.
Sending email is very important to a lot of programming assignments. This page gives examples of how to send email using VB.
Visual Basic comes with a decent math module. This goes the different types of math functions.
A description of the ListView control. A control designed to replace the GridView control.
The Listview control is used to present data. It can be configured to manage data (add, edit and delete). Here is information on how to hide a column.
The Listview control is used to present data. It can be configured to manage data (add, edit and delete). This page contains notes to add a DropDownList control to a Listview.