Validation.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Validation.aspx.cs" Inherits="Learningneverend.Validation" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 83%;
}
.auto-style2 {
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>Student Registration Form</h2>
<br />
<table class="auto-style1">
<tr>
<td class="auto-style2" colspan="2">
<asp:ValidationSummary ID="ValidationSummary1" runat="server" BackColor="#996600" ForeColor="#FF3300" />
</td>
</tr>
<tr>
<td class="auto-style2">STUDENT NAME</td>
<td>
<asp:TextBox ID="NameTextBox" runat="server" Height="16px" Width="256px" placeholder="Name"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ControlToValidate="NameTextBox" ErrorMessage="Please Enter Nae" ForeColor="Red" SetFocusOnError="True">*</asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="auto-style2">STUDENT EMAIL</td>
<td>
<asp:TextBox ID="EmailTextBox" runat="server" Height="16px" Width="256px" placeholder="Email"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator2" runat="server" ControlToValidate="EmailTextBox" ErrorMessage="Please Enter Email" ForeColor="#FF3300" SetFocusOnError="True" Display="Dynamic">*</asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="EmailTextBox" EnableTheming="True" ErrorMessage="Email is invalid" ForeColor="#FF3300" SetFocusOnError="True" ValidationExpression="\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*">*</asp:RegularExpressionValidator>
</td>
</tr>
<tr>
<td class="auto-style2">RE-ENTER EMAIL</td>
<td>
<asp:TextBox ID="ReEnterEmailTextBox" runat="server" Height="16px" Width="256px" placeholder="ReEnterEmail"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server" ControlToValidate="ReEnterEmailTextBox" ErrorMessage="Please Re Enter Email" ForeColor="#FF3300" SetFocusOnError="True" Display="Dynamic">*</asp:RequiredFieldValidator>
<asp:CompareValidator ID="CompareValidator1" runat="server" ControlToCompare="EmailTextBox" ControlToValidate="ReEnterEmailTextBox" Display="Dynamic" ErrorMessage="Error is not identital" ForeColor="#FF3300" SetFocusOnError="True">*</asp:CompareValidator>
</td>
</tr>
<tr>
<td class="auto-style2">CLASS</td>
<td>
<asp:TextBox ID="ClassTextBox" runat="server" Width="254px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ControlToValidate="ClassTextBox" Display="Dynamic" ErrorMessage="Please Enter Class" ForeColor="#FF3300" SetFocusOnError="True">*</asp:RequiredFieldValidator>
<asp:RangeValidator ID="RangeValidator1" runat="server" ControlToValidate="ClassTextBox" Display="Dynamic" ErrorMessage="Class Shoud be from 1 to 12" ForeColor="#FF3300" MaximumValue="12" MinimumValue="1" SetFocusOnError="True" Type="Integer">*</asp:RangeValidator>
</td>
</tr>
<tr>
<td class="auto-style2">FEES</td>
<td>
<asp:TextBox ID="FeesTextBox" runat="server" Width="254px"></asp:TextBox>
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server" ControlToValidate="FeesTextBox" Display="Dynamic" ErrorMessage="Please Enter Fees" ForeColor="#FF3300" SetFocusOnError="True">*</asp:RequiredFieldValidator>
<asp:RangeValidator ID="RangeValidator2" runat="server" ControlToValidate="FeesTextBox" Display="Dynamic" ErrorMessage="Fees should be 2000.00 to 5000.00" ForeColor="#FF3300" MaximumValue="5000.00" MinimumValue="2000.00" SetFocusOnError="True" Type="Double">*</asp:RangeValidator>
</td>
</tr>
<tr>
<td class="auto-style2">GENDER</td>
<td>
<asp:RadioButton ID="MaleRadioButton" runat="server" GroupName="GenderGroup" Text="Male" />
<asp:RadioButton ID="FemaleRadioButton" runat="server" GroupName="GenderGroup" Text="Female" />
<asp:CustomValidator ID="CustomValidator1" runat="server" Display="Dynamic" ErrorMessage="Please select a Gender" ForeColor="#FF3300" OnServerValidate="CustomValidator1_ServerValidate">*</asp:CustomValidator>
</td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td>
<asp:Button ID="Button1" runat="server" Text="SUBMIT" Width="109px" OnClick="Button1_Click" />
</td>
</tr>
</table>
</div>
</form>
<p>
</p>
</body>
</html>
Validation.aspx.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace Learningneverend
{
public partial class Validation : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Scripts", "<script>alert('YOUR FORM HAS BEEN SUBMITTED!!')</script>");
}
protected void CustomValidator1_ServerValidate(object source, ServerValidateEventArgs args)
{
if(MaleRadioButton.Checked || FemaleRadioButton.Checked)
{
args.IsValid = true;
}
else
{
args.IsValid = false;
}
}
}
}
0 Comments