32 lines
1.1 KiB
Plaintext
32 lines
1.1 KiB
Plaintext
<%@ Page Title="slave1" Language="C#" MasterPageFile="main.master" CodeBehind="slave1.aspx.cs" Inherits="masterpage.slave1" %>
|
|
|
|
<asp:Content ContentPlaceHolderID="pc1" runat="server" ID="pc1">
|
|
|
|
<div style="outline: solid 1px red">
|
|
|
|
<br/>
|
|
<div>
|
|
<label for="txtFirstName">First Name:</label>
|
|
<asp:TextBox ID="FirstNameTextBox" name="FirstNameTextBox" runat="server"></asp:TextBox>
|
|
</div>
|
|
<div>
|
|
<label for="txtLastName">Last Name:</label>
|
|
<asp:TextBox ID="LastNameTextBox" name="LastNameTextBox" runat="server"></asp:TextBox>
|
|
</div>
|
|
<div>
|
|
<label for="txtAddress">Address:</label>
|
|
<asp:TextBox ID="AddressTextBox" name="AddressTextBox" runat="server"></asp:TextBox>
|
|
</div>
|
|
<div>
|
|
<label for="txtPhone">Phone:</label>
|
|
<asp:TextBox ID="PhoneTextBox" name="PhoneTextBox" runat="server"></asp:TextBox>
|
|
</div>
|
|
<div>
|
|
<asp:Button ID="btnSubmit" name="btnSubmit" runat="server" Text="Submit" OnClick="SubmitButton_Click" />
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
</div>
|
|
|
|
</asp:Content> |