Suppose a website with a Default.aspx page.
These addresses find the Default.aspx physical file and load it:
www.mysite.com
www.mysite.com/Default.aspx
It's clear that we'll get the error 404 with this address: www.mysite.com/myvariable
Is there any way (any configuration) to make this address call the default.aspx file and ignore the /myvariable part? (or in some cases get the /myvariable value in the default.aspx.cs for example?)
As I know it could be possible in asp.net MVC, but I need to do so in asp.net web forms.
Note that the site contains other pages like info.aspx, contactus.aspx, and so on.
Thanks in advance.