Retrieveing logged in user Id in internet explorer
-
hi, I mean in my asp.net application , the user logged in using windows authentication, now on the load of first page i want to get his logged in id and show it in the textbox. I do not need to do this with any session variable. How can i get so? waiting reply . thanx sandeep
-
hi, I mean in my asp.net application , the user logged in using windows authentication, now on the load of first page i want to get his logged in id and show it in the textbox. I do not need to do this with any session variable. How can i get so? waiting reply . thanx sandeep
Hi, Try using the User.Identity.Name property. Regards, Plamen Dimitrov
-
hi, I mean in my asp.net application , the user logged in using windows authentication, now on the load of first page i want to get his logged in id and show it in the textbox. I do not need to do this with any session variable. How can i get so? waiting reply . thanx sandeep
Try the following: TextBox.text=User.Identity.Name
-
hi, I mean in my asp.net application , the user logged in using windows authentication, now on the load of first page i want to get his logged in id and show it in the textbox. I do not need to do this with any session variable. How can i get so? waiting reply . thanx sandeep