I am building an app where i need to request user name and enter it into the database along with some other fields.
Is there an easy way to request a username using vb.net?
ie username = 'Home/JimJones'
I am building an app where i need to request user name and enter it into the database along with some other fields.
Is there an easy way to request a username using vb.net?
ie username = 'Home/JimJones'
You can see what domain/username the person accessing your site with is using by looking at User.Identity.Name
Here is info on the HttpContext.User Property