Reputation: 127
Is there any possible way to edit this code
<asp:LoginName ID="LoginName1" runat="server" style="top: 165px; left: 888px; position: absolute;" Font-Names="verdana" ForeColor="black" Font-Size="13px" />
so instead of showing the username I can display a img that links to a page
Upvotes: 1
Views: 80
Reputation: 18946
As @PraVN said, FormatString
should be greate for this :
<asp:LoginName ID="LoginName1" runat="server" FormatString="<a href="http://www.myurl.com"><img src='myimage.jpg' /></a>" />
Upvotes: 1