| 
0
 | 
     1 <%@ Page AutoEventWireup="true" CodeFile="UserProfile.aspx.cs" Inherits="PetShop.Web.UserProfile" Language="C#" MasterPageFile="~/MasterPage.master" Title="User Profile" %>
 | 
| 
 | 
     2 <%@ Register Src="Controls/AddressForm.ascx" TagName="AddressForm" TagPrefix="PetShopControl" %>
 | 
| 
 | 
     3 
 | 
| 
 | 
     4 <asp:Content ID="cntPage" ContentPlaceHolderID="cphPage" Runat="Server" EnableViewState="false">
 | 
| 
 | 
     5 <div align="center" class="profilePosition">
 | 
| 
 | 
     6 <table border="0" cellpadding="0" cellspacing="0" class="formContent" width="380">
 | 
| 
 | 
     7 <tr>
 | 
| 
 | 
     8 <td>
 | 
| 
 | 
     9 	<div class="checkoutHeaders" align="left">Billing Information</div>
 | 
| 
 | 
    10 	<div class="info">
 | 
| 
 | 
    11 		User Name:
 | 
| 
 | 
    12 		<asp:LoginName ID="LoginName" runat="server" />
 | 
| 
 | 
    13 		<br />
 | 
| 
 | 
    14 	</div>
 | 
| 
 | 
    15 	<asp:Panel ID="panFocus" runat="server" DefaultButton="btnSubmit">
 | 
| 
 | 
    16 	<PetShopControl:AddressForm ID="AddressForm" runat="server" />
 | 
| 
 | 
    17 	<asp:Label ID="lblMessage" runat="server" cssclass="label"></asp:Label>
 | 
| 
 | 
    18 	<div align="right" class="checkoutButtonBg">
 | 
| 
 | 
    19 		<asp:LinkButton ID="btnSubmit" runat="server" CssClass="submit" OnClick="btnSubmit_Click" Text="Update"></asp:LinkButton>
 | 
| 
 | 
    20 	</div>
 | 
| 
 | 
    21 	</asp:Panel>
 | 
| 
 | 
    22 </td>
 | 
| 
 | 
    23 </tr>
 | 
| 
 | 
    24 </table>
 | 
| 
 | 
    25 </div>
 | 
| 
 | 
    26 </asp:Content>
 |