Posted on: 2/15/2014 12:07:47 AM | Views : 621

I tested a sample form with javascript disabled in the browser.
The form contains label control to display result,  textbox  and a button.
when i clicked the button, and captured the page.isvalid property, it is valid.
so what are the other options for server validation. is the traditional validation of control values in the server side like is empty, email using regex.
<asp:Label ID="lbl_Message" runat="server" Text=""></asp:Label> <br /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <br /> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /> codebehind
protected void Button1_Click(object sender, EventArgs e) { if (P ...

Go to the complete details ...