question regarding overriding of web.config in the root directory..in a web app in a virtual directo

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....
 
J

Joey Powell

Insert a <location> tag in the parent app with allow users=*. This
will "free up" the access control from the parent app. Control should
then roll down to the web.config of the app that you are trying to
use. I have not tried this...just an idea.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Staff online

Members online

Forum statistics

Threads
473,769
Messages
2,569,577
Members
45,054
Latest member
LucyCarper

Latest Threads

Top