vote up 0 vote down star

I have a .net application I want to respond to .htm and .html requests (in addition to .aspx). I know how to do this in IIS6, but not in IIS7. Someone please enlighten me!

Thanks,

Kyle

flag

2 Answers

vote up 1 vote down check

Handler Mappings
Click 'Add Script Map' on the right
Then:

Request path: "*.html"
Executable: "%windir%\Microsoft.NET\Framework\v2.0.5 0727\aspnet_isapi.dll"
Name: "YOURNAME"

have you tried classic mode?

link|flag
didn't work. I haven't tried "classic" b/c it seems like a step backwards. – Kyle West May 21 at 1:20
maybe try stopping and starting? – Luke Schafer May 21 at 1:49
also, add .html to your web.config – Luke Schafer May 21 at 1:50
vote up 0 vote down

What do you mean when you say you want this application to "handle" .html files? What do you expect it to do? Run HttpModules? Do you have your own handler?

Because IIS7 has integrated the ASP.NET pipeline. The IIS7 pipeline is now the same as the ASP.NET pipeline. I'm not sure there's anything special you need to do anymore.

link|flag

Your Answer

Get an OpenID
or
never shown

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