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>&nbsp;</td>

            </tr>

            <tr>

                <td class="auto-style1">Password</td>

                <td>

                    <asp:TextBox ID="TextBox2" runat="server" Width="251px"></asp:TextBox>

                </td>

                <td>&nbsp;</td>

            </tr>

            <tr>

                <td class="auto-style1">&nbsp;</td>

                <td>

                    <asp:Button ID="Button1" runat="server" Text="Login" />

                </td>

                <td>&nbsp;</td>

            </tr>

        </table>

    </form>

</body>

</html>

Above File is Design_WebForm\Start.aspx

Comments

Popular posts from this blog

AJAX Method Of jQuery AJAX In ASP.NET Web Forms | Learn ASP.NET Web Forms

List Box In ASP.NET Web Forms | ASP.NET ListBox | Web Forms Tutorial | ASP.NET

Display Auto Increment Value In Text Field After Insert To Database ASP.NET