I am generating my routeconfig
from a database.
I have a file combine.aspx
which combines all data into a virtual webpage.
Right now the routing is working, however I have a problem.
I want the url to look like this:
www.domain.com/Home
This is working, however the combiner needs the pageId
. How can I send this without showing it in the url? This is how the route is combined now:
routes.MapPageRoute(
page.pageName,
url,
"~/combine.aspx");