summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderMvc/Default.aspx.cs
blob: ac88bb0d628e0dac7d870cb3e786d3ff0fb410c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace OpenIdProviderMvc {
	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);
		}
	}
}