summaryrefslogtreecommitdiffstats
path: root/samples/OpenIdProviderWebForms/Global.asax.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-04-03 17:00:05 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-04-03 17:00:05 -0700
commit8254a5ca1ced42181eb33e1282cfab5e429b0243 (patch)
tree7efd0efb5d555d57aec6eb9059a50a59eceb98b7 /samples/OpenIdProviderWebForms/Global.asax.cs
parenta124b5a041853c0d9f52244f43740c94bd6f4f3c (diff)
parent22873cc61615aaa01734857b0567e4878b2e325c (diff)
downloadDotNetOpenAuth-8254a5ca1ced42181eb33e1282cfab5e429b0243.zip
DotNetOpenAuth-8254a5ca1ced42181eb33e1282cfab5e429b0243.tar.gz
DotNetOpenAuth-8254a5ca1ced42181eb33e1282cfab5e429b0243.tar.bz2
Merge branch 'v3.0' into master
Diffstat (limited to 'samples/OpenIdProviderWebForms/Global.asax.cs')
-rw-r--r--samples/OpenIdProviderWebForms/Global.asax.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/samples/OpenIdProviderWebForms/Global.asax.cs b/samples/OpenIdProviderWebForms/Global.asax.cs
index 79aca23..3048b17 100644
--- a/samples/OpenIdProviderWebForms/Global.asax.cs
+++ b/samples/OpenIdProviderWebForms/Global.asax.cs
@@ -39,13 +39,6 @@ namespace OpenIdProviderWebForms {
}
protected void Application_BeginRequest(object sender, EventArgs e) {
- /*
- * The URLRewriter was taken from http://www.codeproject.com/aspnet/URLRewriter.asp and modified slightly.
- * It will read the config section called 'urlrewrites' from web.config and process each rule
- * The rules are set of url transformations defined using regular expressions with support for substitutions (the ability to extract regex-matched portions of a string).
- * There is only one rule currenty defined. It rewrites urls like: user/john ->user.aspx?username=john
- */
- //// System.Diagnostics.Debugger.Launch();
Logger.DebugFormat("Processing {0} on {1} ", this.Request.HttpMethod, this.stripQueryString(this.Request.Url));
if (Request.QueryString.Count > 0) {
Logger.DebugFormat("Querystring follows: \n{0}", ToString(Request.QueryString));
@@ -53,8 +46,6 @@ namespace OpenIdProviderWebForms {
if (Request.Form.Count > 0) {
Logger.DebugFormat("Posted form follows: \n{0}", ToString(Request.Form));
}
-
- URLRewriter.Process();
}
protected void Application_AuthenticateRequest(object sender, EventArgs e) {