Hi,
I want to acces to user information from my client code, in concret I want to acces to the USER_LOGON value.
Supose I have the WhoAmI.aspx page:
<%Response.Write(Request.ServerVariables["LOGON_USER"]);%>
It will return my domain and user name, for instance:
AD/JONCINS
The question is:
How could I do that using only Javascript and doing nothing with c# and ServerVariables
Is there a way to obtain the "LOGON_USER" only from client side
Thanks in advance
.NET Development20
|