Posted on: 7/7/2014 12:46:08 PM | Views : 421

Please anyone that can help me on this area will be appreciated.
 I created a webpage called "Contact Us " using Ajax tool script manager,and a text box is also created in the script manager where user 
can  enter his/her e-mail address, this is mark up for it:
<span class="NormalBold">Email:</span><br /> <asp:TextBox id="Email" runat="server" Width="400px" /><br /> <asp:RequiredFieldValidator runat="server" id="RequiredFieldValidator2" ControlToValidate="Email" Display="Dynamic" CssClass="ValidationError"   ErrorMessage="'Email' must not be left blank." /><br />
This is the code for exception handling for the error page in Global.asax file
void Application_Error(object sender, EventArgs e)
{
if (Request ...

Go to the complete details ...