asp.net - MapPageRoute on iis7 not working (but works in iis6) -


my website runs fine on iis6, can see here: http://93.115.250.xxx/

i tried migrate iis7, , after lot of hussle can see starting page, urls rewritten through mappageroute give 404 can see here: 94.75.xxx.xxx

any ideas why iis7 trying access physical file , ignores pageroute?

i programming in mixed environment. alpha server server2008, beta , production still 2003. need modify config file have system.webserver node following entry:

<system.webserver>     <modules runallmanagedmodulesforallrequests="true"/> </system.webserver> 

i not sure if applicable in instance, application required log-in accept publicly available image files available re-written directory. don't forget add except route mapped:

   <location path="{target path}">         <system.web>             <authorization>                 <allow users="*"/>             </authorization>         </system.web>     </location> 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -