Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all,I am working on a website which is developed in asp.net 3.5 , in which i have used following code to handle not existing pages

<customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">           
            <error statusCode="404" redirect="FileNotFound.htm" />
        </customErrors>



Now whwn I Type The url
e.g. http://mysite/Notexist.aspx

it redirects me to FileNotFound.htm

but when i type something like

e.g. http://mysite/Notexist.htm

it does not work it shows me the old iis page saying page not found..

i don't know why this does not working..

Please help me


Regards.
Posted
Comments
Ankur\m/ 27-Nov-12 8:39am    
Hi... did the solution work for you?

1 solution

That's because the request doesn't reach the ASP.NET engine and is handled by IIS itself. You will need to add a handler mapping to .htm pages.
For IIS 7, follow the following steps:
Open IIS and click on your website. Select 'Handler Mapping' from the right pane. There are 'Actions' listed on the extreme right and select 'Add Script Map'.
Enter *.htm in the Request Path field.
Give the path to aspnet_isapi.dll in the executable field. (Should be here: C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_isapi.dll. If it isn't here check Framework64 folder).
Finally give a name to the handler. Say Html.
Click Okay and try again now.

Hope this helps!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900