Yes, the web host is running IIS 7.
Main Topics
Browse All TopicsUsing the ASP.NET Configuration tool I've set up access permissions to a folder in my site. This works fine when I test the site locally, by right-clicking the page in Solutions Explorer and selecting View in Browser. But when I upload the pages to my web host server, the logins all still work but the access rules don't. Any user who logs in can access the protected folder. I was sure to upload the web.config file that got created in the protected folder so it seems everything that the page needs on the remote web host to enforce access rules is there - and this does all work locally, so the web.config file seems to be correct.
What else could keep access rules from working when the site is uploaded to a web host?
Thanks for any help.
steva
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I found the answer. The web server is running IIS, which doesn't normally pass .exe files to the ASP.NET dll. It just fetches them from local storage and sends them to the client browse, so they aren't subjected to any authorization rules you set up in ASP.NET. To apply your authorization rules you have to get IIS to send the file to aspnet_isapi.dll and you do that by adding handlers to your web.config file.
Business Accounts
Answer for Membership
by: rlh68Posted on 2008-09-15 at 20:54:24ID: 22484729
Is the web host using IIS as the web server? Just a thought.