Hi, my working with my registration web application. Here my code.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.style1
{
width: 47%;
height: 169px;
}
.style2
{
font-size: large;
color: #0000FF;
font-weight: bold;
font-family: "Berlin Sans FB";
text-transform: uppercase;
text-align: center;
}
.style3
{
font-family: "Trebuchet MS";
font-size: small;
font-weight: bold;
}
.style6
{
height: 13px;
}
.style7
{
font-family: "Trebuchet MS";
font-size: small;
font-weight: bold;
width: 79px;
}
.style8
{
height: 13px;
width: 79px;
}
.style9
{
font-family: "Trebuchet MS";
font-size: small;
font-weight: bold;
width: 240px;
}
.style10
{
width: 240px;
}
.style11
{
height: 13px;
width: 240px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
</div>
<table class="style1">
<tr>
<td class="style2" colspan="3">
Registration Form</td>
</tr>
<tr>
<td class="style7">
Username</td>
<td class="style9">
<asp:TextBox ID="UserName" runat="server" Font-Names="Malgun Gothic"
Height="25px" Width="237px"></asp:TextBox>
</td>
<td class="style3">
<asp:RequiredFieldValidator ID="RequiredFieldValidator3" runat="server"
ErrorMessage="Required" Font-Bold="False" Font-Names="Calisto MT"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style7">
Password</td>
<td class="style10">
<asp:TextBox ID="Password" runat="server" Font-Names="Malgun Gothic"
Height="25px" Width="237px"></asp:TextBox>
</td>
<td>
<asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server"
ErrorMessage="Required" Font-Bold="False" Font-Names="Calisto MT"
Font-Size="Small"></asp:RequiredFieldValidator>
</td>
</tr>
<tr>
<td class="style7">
Confirm<br />
Password</td>
<td class="style10">
<asp:TextBox ID="ConfirmPassword" runat="server" Font-Names="Malgun Gothic"
Height="25px" Width="238px"></asp:TextBox>
</td>
<td>
<asp:CompareValidator ID="CompareValidator1" runat="server"
ErrorMessage="Password do not match"></asp:CompareValidator>
</td>
</tr>
<tr>
<td class="style7">
Email</td>
<td class="style10">
<asp:TextBox ID="Email" runat="server" Font-Names="Malgun Gothic" Height="25px"
Width="240px"></asp:TextBox>
</td>
<td>
<asp:RequiredFieldValidator ID="RequiredFieldValidator5" runat="server"
ErrorMessage="Required" Font-Bold="False" Font-Names="Calisto MT"
Font-Size="Small"></asp:RequiredFieldValidator>
<asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server"
ErrorMessage="RegularExpressionValidator"></asp:RegularExpressionValidator>
</td>
</tr>
<tr>
<td class="style8">
</td>
<td class="style11">
<asp:Button ID="Submit" runat="server" Font-Bold="True" Font-Names="Calibri"
Font-Overline="False" Text="Submit" />
</td>
<td class="style6">
</td>
</tr>
</table>
</form>
</body>
</html>
After trying to build, I found an error [ 'Context' is not a member of '_Default'.] and 26 more error. This error show in this link http://tinypic.com/view.php?pic=2130w47&s=8#.VP6qsPmUd1Y Anyone here can help me to solve this problem?