Form Validation and Redirect Page
Hi,
I have a script to validate form and if it's valid, it submits the form to another page.
Here is my script:
void Page_Load(Object sender, EventArgs e) {
if (IsPostBack) {
Validate();
if (IsValid) {
(what do i do here to submit to the next page?)
}
}
}
<asp:Button text="Submit" runat="server" />
Thank you...
|