summaryrefslogtreecommitdiffstats
path: root/samples/ProviderCustomStore/Global.asax.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/ProviderCustomStore/Global.asax.cs')
-rw-r--r--samples/ProviderCustomStore/Global.asax.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/samples/ProviderCustomStore/Global.asax.cs b/samples/ProviderCustomStore/Global.asax.cs
new file mode 100644
index 0000000..7b52c6a
--- /dev/null
+++ b/samples/ProviderCustomStore/Global.asax.cs
@@ -0,0 +1,10 @@
+using System;
+using ProviderPortal;
+
+namespace ProviderCustomStore {
+ public class Global : System.Web.HttpApplication {
+ protected void Application_BeginRequest(object sender, EventArgs e) {
+ URLRewriter.Process();
+ }
+ }
+} \ No newline at end of file