Hi friends,
I had added an HttpModule in my application for redirecting user to suggeted url page if URL is mistyped,
Put Module code under app_code folder,
and registered it in web.config file under .
--
<httpModules>
<add name="ValidateUrl" type="ValidateUrl"></add>
<add name="IpBlock" type="IpBlock"></add>
</httpModules>
--
It is working well when tested on local machine , But when loaded to Third party web server it is not initialised and not working.
Can some tell where do i lag.
Thanks.