I have just made a step back from ASP .NET MVC application and moved to ASP .NET Web Forms and I'm wondering is it possible to rewrite url in Web Forms as well. I have a following set of URLs to reqrite:
- Edit.aspx?type=grbat
- Edit.aspx?type=lrbat
- Edit.aspx?type=glsi
- Edit.aspx?type=llsi
As you can see, everything works on one page.
However, I would like to make URLs more user friendly and replace it with:
- EditGlobalTopic.aspx
- EditLocalTopic.aspx
- EditGlobalInitiative.aspx
- EditLocalInitiative.aspx
is it possible in ASP .NET Web Forms?
Thanks