how come User.Identity.Name is not useable in the codebehind page of an ascx file
Printable View
how come User.Identity.Name is not useable in the codebehind page of an ascx file
Try this Context.User.Identity.Name
Or
HttpContext.User.Identity.Name
Awesome thx guys!!!!