Skip to content

Instantly share code, notes, and snippets.

@actaneon
Created October 27, 2009 05:07
Show Gist options
  • Save actaneon/219336 to your computer and use it in GitHub Desktop.
Save actaneon/219336 to your computer and use it in GitHub Desktop.
Default.aspx for ASP.NET MVC 2
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %>
<%
var originalPath = Request.Path;
HttpContext.Current.RewritePath(Request.ApplicationPath, false);
IHttpHandler httpHandler = new MvcHttpHandler();
httpHandler.ProcessRequest(HttpContext.Current);
HttpContext.Current.RewritePath(originalPath, false);
%>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment