Z
Zeba
Hi !
My web.config contains the following entry to direct all urls
containing /App/*.ashx to my Apphandler located in wwwroot/mySite/Web/
AppHandler
<httpHandlers>
<add verb="*" path="App/*.ashx" type="mySite.Web.AppHandler,
App_Code"/>
</httpHandlers>
This works perfectly fine in Firefox, but the redirection does not
take place in IE. In IE I get a 404 error - Page cannot be found, and
the address bar contains :
http://localhost/mySite/App/?keyword=mySearchWord
Why is this ?
Thanks !
My web.config contains the following entry to direct all urls
containing /App/*.ashx to my Apphandler located in wwwroot/mySite/Web/
AppHandler
<httpHandlers>
<add verb="*" path="App/*.ashx" type="mySite.Web.AppHandler,
App_Code"/>
</httpHandlers>
This works perfectly fine in Firefox, but the redirection does not
take place in IE. In IE I get a 404 error - Page cannot be found, and
the address bar contains :
http://localhost/mySite/App/?keyword=mySearchWord
Why is this ?
Thanks !