2
I have a web application that validates the user logged in to the machine, loads their permissions and opens the screens you are allowed, without using login screen.
Caught the user with User.Identity.Name
from that return I seek the permissions.
In local environment (development) the application picks up my user correctly. However, when the application is published on the server, it takes the server user and not the one on my local machine.
How do I make the application catch my local user even though it (application) is published on the server? It is possible to do this?