Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Well, if the port indicates you are using the built-in web server (the one that comes with VS), this probably works because that <em>always</em> routes requests through the ASP.NET framework.</p> <p>Requests ending with /abc will not automatically route through the ASP.NET framework because IIS may not "know" you want them to. You need to check your IIS settings to make sure such requests are routed to the aspnet_isapi.dll</p> <hr> <p><strong>EDIT:</strong> To accomplish this, you need to add a <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/5c5ae5e0-f4f9-44b0-a743-f4c3a5ff68ec.mspx" rel="nofollow noreferrer"><strong>wildcard mapping</strong></a>:</p> <ol> <li>In IIS Manager, expand the local computer, expand the Web Sites folder, right-click the Web site or virtual directory that you want, and then click Properties.</li> <li>Click the appropriate tab: Home Directory, Virtual Directory, or Directory.</li> <li>In the Application settings area, click Configuration, and then click the Mappings tab.</li> <li>To install a wildcard application map, do the following: <ul> <li>On the Mappings tab, click Add or Insert.</li> <li>Type the path to the DLL in the Executable text box or click Browse to navigate to it (for example, the ASP.NET 2.0 dll is at c:\windows\microsoft.net\framework\v2.0.50727\aspnet_isapi.dll on my machine)</li> <li>For extension, use ".*" without quotes, of course</li> <li>Select which verbs you want to look for (GET,HEAD,POST,DEBUG are the usual for ASP.NET, you decide)</li> <li>Make sure "Script engine" or "Application engine" is selected</li> <li>Uncheck "Check that file exists"</li> <li>Click okay.</li> </ul></li> </ol> <p>I may be off on this, but if I am, hopefully someone will correct me. :)</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload