0% found this document useful (0 votes)
72 views

02536873

The document describes an ASP.NET address book application with the following key elements: - A welcome page with labels and buttons to introduce the address book and start entering addresses. - A table on the welcome page with labels, buttons and images to guide the user. - Another table that displays a sample contact with name and email as an example of what a stored contact would look like.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
72 views

02536873

The document describes an ASP.NET address book application with the following key elements: - A welcome page with labels and buttons to introduce the address book and start entering addresses. - A table on the welcome page with labels, buttons and images to guide the user. - Another table that displays a sample contact with name and email as an example of what a stored contact would look like.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

........................ADDRESS BOOK in ASP.NET..............................

Welcome.aspx HTML code


-----------------------------------------------

<body>
<form id="form1" runat="server">
<div>
<table width="100%" bgcolor= "lime" height="350">
<tr>
<td align="center">
<asp:Label ID="lblWelcome" runat="server"
Text="Welcome Phone Address Book" Font-Bold="true"
Font-Size="22pt" ForeColor="#6600ff">
</asp:Label>
</td></tr>

<tr><td align="center">
<asp:Label ID="lblDoAddress" runat="server" Text="Record your Friends
Address Here.."
Font-Bold="true" ForeColor="black" Font-Size="14pt">
</asp:Label>
</td></tr>
<tr><td ><hr /></td></tr>
<tr><td align="center">
<asp:ImageButton ID="Imgm" ImageUrl= "~/2.png" runat="server"
OnClick="StartAddress" />
</td></tr>
<tr>

<tr><td align="center">
<asp:Label ID="lblAddress" runat="server" Text="(Address Book)"
Font-Bold="true" ForeColor="#000099"
Font-Size="16pt"></asp:Label>
</td></tr>

<tr><td>&nbsp;&nbsp;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<asp:Button ID="btnAddressBook" runat="server" Text="The Address
Book" BackColor="#ff9900"
Height="45px" OnClick="btnInside_Click" Font-
Bold="True"
Font-Size="16pt" />
</td></tr>
<tr>
<td> </td></tr>

</table>
<table bgcolor="yellow" cellpadding="0" cellspacing="0" width="100%"
height="170">
<tr><td align="right">
<asp:Label ID="lblName" runat="server" Text="Balram" Font-Bold="true"

Font-Size="16pt" ForeColor="#6600ff"></asp:Label><br /><br />


<asp:Label ID="lblEmail" runat="server" Text="Email:
[email protected]"
Font-Bold="true" Font-Size="14pt" ForeColor="#6600ff"></asp:Label>
</td><td width="5%"></td></tr>
<tr><td Height="43px"></td></tr>
</table>

</div>
</form>
</body>

You might also like