Hi everyone,
Given the following:
1. I have an ASP site with a virtual folder that points to a .Net site
2. The .Net site has its own login page configured in web.config as follows
<authentication mode="Forms" lockItem="true"> |
<forms loginUrl="Login.aspx" name="frmL" protection="All" defaultUrl="Index.aspx" path="/" timeout="30"></forms> |
</authentication> |
|
3. The .Net site is accessible from the “User Tools” section of the ASP site and is accessible only to users who have successfully logged on
4. The “User Tools” section has its own ASP login page
5. The “User Tools” section has several links, one of them is the link to the .Net site
Problem:
When the user is on the “User Tools” page and clicks on the link to the .Net site, the user is taken to the .Net login page which means user has to login twice to access the .Net site.
Is there a way to bypass the .Net login page when a user has already successfully logged on through the ASP login page?
Thanks!
BizTalk R2 newbie