-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
gaurangsinha edited this page Dec 19, 2011
·
1 revision
-
Add APIBrowser reference to MVC project
-
Add entry in
httpHandler
section inweb.config
<system.web> </system.web>
<system.webServer> </system.webServer>
-
Add following line at the begining of
RegisterRoutes
method inGlobal.asax
file.routes.IgnoreRoute("apibrowser.axd");
The Global.asax
file should now look like this:
public class MvcApplication : System.Web.HttpApplication {
...
public static void RegisterRoutes(RouteCollection routes) {
routes.IgnoreRoute("apibrowser.axd");
...
}
...
}
- Build & Run the project. Point the browser to
http://[localhost]:[port]/APIBrowser.axd