D
dotnetprogram
I have a web application in the parent directory(http://localhost/). it has
a web.config setting as follows:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="UserToken" protection="All"
timeout="60" path="/">
<credentials passwordFormat="MD5">
</credentials>
</forms>
</authentication>
i installed another web application in a virtual directory named webapp1 (
http://localhost/webapp1) .
it has web.config as follows:
<authentication mode="Forms">
<forms name=".ASPXAUTH" protection="All" timeout="60" />
</authentication>
My problem would be that when i access my new web app1 like
http://localhost/webapp1/
instead of it redirected to default.aspx...it is redirected to the
login.aspx of the parent web app and it can't find the login.aspx..becuase
it doesn't have one..is there any way to override the auythentication
settings of the parent root directory...
Thanks....
a web.config setting as follows:
<authentication mode="Forms">
<forms loginUrl="Login.aspx" name="UserToken" protection="All"
timeout="60" path="/">
<credentials passwordFormat="MD5">
</credentials>
</forms>
</authentication>
i installed another web application in a virtual directory named webapp1 (
http://localhost/webapp1) .
it has web.config as follows:
<authentication mode="Forms">
<forms name=".ASPXAUTH" protection="All" timeout="60" />
</authentication>
My problem would be that when i access my new web app1 like
http://localhost/webapp1/
instead of it redirected to default.aspx...it is redirected to the
login.aspx of the parent web app and it can't find the login.aspx..becuase
it doesn't have one..is there any way to override the auythentication
settings of the parent root directory...
Thanks....