<HTML> <HEAD> <title>WebForm2</title> </HEAD> <body> <form id="Form1" method="post" runat="server"> <table align="center" cellpadding="2" cellspacing="0" border="0"> <tr> <td width="50">Name:</td> <td width="200"><asp:TextBox id="txtName" runat="server" Width="100%"></asp:TextBox></td> </tr> <tr> <td>Surname:</td> <td><asp:TextBox id="txtSurname" runat="server" Width="100%"></asp:TextBox></td> </tr> <tr> <td align="right" colspan="2"><asp:Button id="btnLogin" runat="server" Text="Login" Width="60px"></asp:Button></td> </tr> </table> </form> </body> </HTML>