Page is a not externally linkable
jankajg - 4:37 pm on Jan 8, 2009 (gmt 0)
here is the complete code with the solution container{ <td colspan="10" bgcolor="#AE3B08" align="right" width="1027px"> <div id="container"> ForeColor="white">Login</asp:HyperLink> /> ¦¦ ForeColor="white">Logout</asp:HyperLink>
apologies for posting the incomplete code. But that was due to lack of understanding on actual html ui + css.
After spending 'nights under the bulb' i have finally resolved the issue
width:100%;
}
#home-container{
width:50%;
text-align:left;
color:White;
padding-left:25px;
float:left;
}
#login-container{
width:50%;
text-align:right;
color:White;
padding-right:25px;
}
<div id="home-container">
<asp:HyperLink ID="hlHome" runat="server" ForeColor="white" NavigateUrl="~/Default.aspx">Home</asp:HyperLink>
</div>
<div id="login-container">
<asp:LoginView ID="LoginArea" runat="server">
<AnonymousTemplate>
<asp:HyperLink ID="HlLogin" runat="server" NavigateUrl="~/Login.aspx"
</AnonymousTemplate>
<LoggedInTemplate>
<asp:LoginName ID="LoginName1" runat="server" FormatString="Welcome, {0}"
<asp:HyperLink ID="HLLogout" runat="server" NavigateUrl="~/Logout.aspx"
</LoggedInTemplate>
</asp:LoginView>
¦¦
<asp:HyperLink ID="hlAdmin" runat="server" ForeColor="white">Admin</asp:HyperLink>
</div>
</div>
</td>