How to make .NET WebForm Routing work with Authorization
- by jakmas
I have routes that are being registered from the database into an asp.net website (non MVC). The routes register fine, they all work when I am logged in. What I am trying to do is create a landing page based on some route data:
Page is [site]/landing/dell
The route looks like: "landing/{client}" and it routes to my page Login.aspx, in there I…