If you use Windows authentication, the user is going to be prompted for credentials just to access your site. You won't be able to prevent that. They won't even get to your code until they are authenticated.
We've done similar things using SSO (single sign-on), though I've never tied it to Windows authentication. The idea would be that you have two apps that share user credentials and, if you are logged into one, you are logged into the other. The first app would be your normal application which supports forms-based authentication. The second would be an app that only does Windows authentication and then, upon successful login, redirects to your normal application. Since you're already authenticated, the normal application simply creates it's standard authentication cookie and takes you to the main page of the application.
Typically these work by passing a token in the URL which you can then redeem via a back channel to the SSO server (or, in your case the Windows authentication server) to confirm that the token is authentic. The response to the back channel call contains the user name and other pertinent details if the token is successfully redeemed.
A sketch of the process might look like:
- Get request to protected action on site.
- If not authenticated, redirect to login site without token
- Your login site contains both a forms-based login form and a link to the Windows authentication url
- User clicks the Windows authentication url
- Windows authentication site authenticates, creates a one-time use token in DB for user, and redirects back to your login action with token
- Your login action redeems the token via back channel WebRequest to the Windows authentication server.
- Windows authentication server validates the token, marking it as used, then returns the username to your login action.
- Your login action creates standard forms authentication cookie and continues as normal.