vote up 3 vote down star
1

I'm using the ASP.NET Login Controls and Forms Authentication for membership/credentials for an ASP.NET web application. It keeps redirecting to a Login.aspx page at the root of my application that does not exist. My login page is within a folder.

flag

66% accept rate

2 Answers

vote up 5 vote down check

Use the LoginUrl property for the forms item?

<authentication mode="Forms">
  <forms defaultUrl="~/Default.aspx" loginUrl="~/login.aspx" timeout="1440" ></forms>
</authentication>
link|flag
+1 Also helpful for me. Thanks. – Lukasz Lysik Sep 25 at 22:33
vote up 1 vote down

I found the answer at CoderSource.net. I had to put the correct path into my web.config file.

<?xml version="1.0"?>
<configuration>
    <system.web>
        ...
        <!--
            The <authentication> section enables configuration 
            of the security authentication mode used by 
            ASP.NET to identify an incoming user. 
        -->
        <authentication mode="Forms">
            <forms loginUrl="~/FolderName/Login.aspx" />
        </authentication>
        ...
    </system.web>
    ...
</configuration>
link|flag
What I'm intersted in - is why does this happen in the first place? – Vidar Oct 9 '08 at 9:20
I guess that by default Microsoft assumes you'll have a Login.aspx page at the root: domain.com/Login.aspx. You have to change the web.config to override that default assumption. – Zack Peterson Oct 9 '08 at 18:32
The default value of the loginUrl property is indeed "~/Login.aspx". – Christian Hayter Oct 22 at 16:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.