User Impersonation in Windows Forms Application

<identity impersonate="true" />
Doing this would impersonate the IIS authenticating user on every request for every page in your ASP.NET application.

<identity impersonate="true" userName="username" password="password" />

Comments