OK guys,
Why isn't this working when I deploy my app onto a live server ? It works fine on my local machine ?
lbl_username.Text = User.Identity.Name
Cheers
Bob
Printable View
OK guys,
Why isn't this working when I deploy my app onto a live server ? It works fine on my local machine ?
lbl_username.Text = User.Identity.Name
Cheers
Bob
If you want authenticated request to obtain the user's actual identity, you need to deselect the Allow Anonymous with IIS.
Thanks mate, that did it.
Bob