Hi,
if (HttpContext.Current.User.Identity.IsAuthenticated)
{ lblUsername.Text = "Welcome: " + HttpContext.Current.User.Identity.Name.ToString(); }
Here comes my question: how do I make the above code into a link?
thanks in advance ;-)
...
Go to the complete details ...