diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-08 17:04:55 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-01-08 17:04:55 -0800 |
commit | 23aa694f3850fcfdc9caad053747d3cf6ff78800 (patch) | |
tree | 867d1bda3f0f6bfefa5072653cd18b4fa9c988f8 /projecttemplates/MvcRelyingParty/Default.aspx.cs | |
parent | ca06ff641a3ae5f78a6f0e9753d34ddfafc39cb9 (diff) | |
parent | e60233062f0744249b00f8eb0e079851525a21f3 (diff) | |
download | DotNetOpenAuth-23aa694f3850fcfdc9caad053747d3cf6ff78800.zip DotNetOpenAuth-23aa694f3850fcfdc9caad053747d3cf6ff78800.tar.gz DotNetOpenAuth-23aa694f3850fcfdc9caad053747d3cf6ff78800.tar.bz2 |
Added an ASP.NET MVC template to the .vsi
Merge branch 'mvcProjTemplate'
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Default.aspx.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Default.aspx.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/projecttemplates/MvcRelyingParty/Default.aspx.cs b/projecttemplates/MvcRelyingParty/Default.aspx.cs new file mode 100644 index 0000000..e9077cf --- /dev/null +++ b/projecttemplates/MvcRelyingParty/Default.aspx.cs @@ -0,0 +1,18 @@ +namespace MvcRelyingParty { + using System.Web; + using System.Web.Mvc; + using System.Web.UI; + + public partial class _Default : Page { + public void Page_Load(object sender, System.EventArgs e) { + // Change the current path so that the Routing handler can correctly interpret + // the request, then restore the original path so that the OutputCache module + // can correctly process the response (if caching is enabled). + string originalPath = Request.Path; + HttpContext.Current.RewritePath(Request.ApplicationPath, false); + IHttpHandler httpHandler = new MvcHttpHandler(); + httpHandler.ProcessRequest(HttpContext.Current); + HttpContext.Current.RewritePath(originalPath, false); + } + } +} |