When you specify your submit button on the form you set the OnClick
event to a Sub Routine. That sub can process the form. Like this.
---> The below code is under the <Script> tags of your page or in a
codebehind page
Public Sub Form_Submit(sender As Object, e As System.EventArgs)
'Code to process form, save in database or whatever you want
End Sub
---->The below code is inbetween the <form> tags on your page
<Form Runat="Server">
<asp:button runat="Server" ID="btnSubmit text="Submit"
OnClick="Form_Submit"/>
</Form>
Hope this helps,
Jeremy Reid
http://blackstaronline.net/hgtit