On a intranet ASP .NET (C#) page I am trying to retrieve the current username.
From my local machine (Firefox 3.5) I can see results (from my local login) for the following possibilities:
<% Response.Write(User.Identity.Name); %>
<% Response.Write(HttpContext.Current.User.Identity.Name); %>
<% Response.Write(Page.User.Identity.Name); %>
However when I browse locally(IE8) or on the server (IE7) none of the above work for my terminal server login.
Is this a permission issue between IE and the webpage?
UPDATE1
Just tested the same page on the Terminal Server with Firefox portable and it also blocks the username.