Design Web Form
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Start.aspx.cs" Inherits="Design_WebForm.Start" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 121px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>Hello World</h2>
</div>
<table style="width:100%;">
<tr>
<td class="auto-style1">Username</td>
<td>
<asp:TextBox ID="TextBox1" runat="server" Width="251px"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style1">Password</td>
<td>
<asp:TextBox ID="TextBox2" runat="server" Width="251px"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style1"> </td>
<td>
<asp:Button ID="Button1" runat="server" Text="Login" />
</td>
<td> </td>
</tr>
</table>
</form>
</body>
</html>
.png)
Comments
Post a Comment