I have some includes on a login page, a css file and a js file.

<link rel="stylesheet" type="text/css" href="../../ext/resources/css/ext-all.css" />
<script type="text/javascript" src="../../ext/bootstrap.js"></script>

Unfortunatly the requests the browser makes for these get the 302 response. Forms Auth is seeing the request as unauthorized and redirecting them to the login page. It doesn't realise that the request are comming from the login page in the first place.

GET http://localhost:50880/ext/resources/css/ext-all.css HTTP/1.1

HTTP/1.1 302 Found
<html><head><title>Object moved</title></head><body>
<h2>Object moved to <a href="/Account/LogOn?ReturnUrl=%2fext%2fresources%2fcss%2fext-all.css">here</a>.</h2>
</body></html>

I thought perhaps setting the permissions of the includes folder (ext) to everyone might help.

I've not had this issue in other projects. I'm not sure whats going on. Any help would be much appriciated.

link|improve this question

62% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You need to exclude the css files and images from getting authenticated as following in the configuration file. Using the location tag you can exclude a single file or a directory.

<location path="<RELATIVE_PATH_OF_YOUR_RESOURCE_FILES>">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>
link|improve this answer
Thanks, this I did not know about. Having said that, if I create perhaps a new ASP or MVC project the login page correctly gets the CSS without anything like this in the web.config. Any ideas? – Dan Revell Jun 10 '11 at 9:50
You need to mention the Login page in the configuration file, so that if the user is not authenticated where he will be redirected? I am not sure if we specify the login page in that case do we need to exclude the css and image file or not, this i need to check <authentication mode="Forms"> <forms loginUrl="Login.aspx" timeout="30" name=".ASPXAUTH" path="/" requireSSL="false" slidingExpiration="true" defaultUrl="Default.aspx" /> </authentication> – Prakash Kalakoti Jun 10 '11 at 9:54
I was under the misunderstanding that by default an mvc application denys all anon users. In fact if I add that to the web.config then it does indeed block the default css on the login page. I'm working on a private site so a block all and force login approach works better. In which case I've used your solution to open up parts of the application such as scrips and content. Thanks! – Dan Revell Jun 10 '11 at 10:21
This solution didn't work for me. It's driving me crazy. I've made every change and tried all kinds of different app pool settings. The home page does not get redirected to the login form, but the CSS and JS files do. – Eric Z Beard Jun 24 '11 at 21:01
10  
I figured it out. It was something I missed from my checklist when setting up a new IIS application: Select the application, double-click "Authentication", select "Anonymous Authentication", then Edit, and change it to use the Application Pool Identity. Make sure that user has permissions on the folder that contains the site. – Eric Z Beard Jun 27 '11 at 13:27
feedback

So, here's what I did that entirely solved the issue.

First, I made the change to the web.config like everyone else said to do.

I am using Anonymous Authentication in IIS, and as stated in this issue, I went into IIS > Application Pools > Right-clicked my application pool > Edit > changed the app pool to use the Application Pool Identity.

THEN - I went to the parent folder that contains my site, went into permissions for that folder, and added the server's NETWORK SERVICE account to access the folder. That did it for me. It's because the Application Pool is running under ApplicationPoolIdentity, which is the NETWORK SERVICE account on the local machine.

Hope this helps someone!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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