<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Welcome to Session Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>
Welcome to Session Example
</h2>
<fieldset style="width: 40%">
<legend>User Login</legend>
<table width="100%" bgcolor="#939300" cellpadding="2" cellspacing="2">
<tr>
<td width="150" align="right">
User Name
</td>
<td width="10">
</td>
<td>
<asp:TextBox ID="txtUserName" runat="server" Width="250px"></asp:TextBox>
</td>
</tr>
<tr>
<td width="150" align="right">
Password
</td>
<td width="10">
</td>
<td>
<asp:TextBox ID="txtPasswordName" runat="server" Width="250px"
TextMode="Password"></asp:TextBox>
</td>
</tr>
<tr>
<td width="150" align="right">
</td>
<td width="10">
</td>
<td>
<asp:Button ID="btnSubmit" runat="server" Text="Submit"
onclick="btnSubmit_Click" />
</td>
</tr>
</table>
</fieldset>
</div>
</form>
</body>
</html>