Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get username in global asax?

I am trying to check if the user belongs to someone's friendlist from the database and redirect him accordingly.

I am doing this in a routehandler called by Global Asax.

I just want to know how to get the username (from the login information) in the route handler class (or Global asax)

I used this:

string username = HttpContext.Current.User.Identity.Name;  

and very strangely, its assigning ".aspx" as the username!!

ps: i did search for similar question but in vain. sorry if I dint search it thoroughly.

like image 599
iamserious Avatar asked Dec 12 '22 21:12

iamserious


1 Answers

It should work...must be something in your authentication method.

How do you have it setup?

It looks like you are doing the authentication yourself and assigning the identity from the wrong server variable

like image 154
Ed B Avatar answered Dec 30 '22 07:12

Ed B