I am building an ASP.NET application. The application uses forms authentication. I am not using roles. However, my account has a flag associated with it that signals I am an administrator.
As an administrator, I would like to call another page in the application via Server.Execute. When I call this page though, I would like to call it as another one of the users in the application.
Is this possible? If so, how do I do it? I know how to run Server.Execute. It's the part of calling it as a different user that is causing me difficulties. I assume this can be done with impersonation. But I'm not sure how to do it.
Thank you!