vote up 0 vote down star

I know how to protect my static (HTML) pages in IIS6, and how to do it using the IIS7 Integrated Pipeline, but how can I protect my HTML pages from unauthorised access in IIS7 when running in Classic Mode?

It's an ASP.NET site using forms authentication.

flag

2 Answers

vote up 0 vote down

ASP.NET forms authentication has nothing to do with resources that aren't handled by ASP.NET, like HTML files. Two options:

1) Tell ASP.NET to handle the static file types you are concerned with (HTML, etc)
2) Disable anonymous access for your site

But now you've got me curious... how does this change with IIS7 Integrated Pipeline vs Classic mode?

link|flag
I've now found this link: ifinity.com.au/Blog/Technical_Blog/… which shows the different ways of doing it. Since there seems to be little difference in IIS7 Classic vs IIS6, it looks like I've just made a mistake somewhere. – a_a Oct 30 at 14:16
vote up 0 vote down check

IIS Classic Mode is the same as IIS6, except you can't use the IIS manager interface to do it; you have to edit web.config directly. See this guide for details.

link|flag

Your Answer

Get an OpenID
or

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