Posted on: 9/4/2015 7:23:28 AM | Views : 946

I have an asp.net webform website and all my footer pages are stored in Visual Studio under the following path:
Views > Footer > testpage.aspx
When i click on a footer link, my URL is displaying as:
http://www.mysite.co.uk/Views/Footer/testpage
What I'm after is removing the "/Views/Footer" from the URL so it looks like:
http://www.mysite.co.uk/testpage
I have no idea how to do this. Could someone please give me step by step guide on the code and where to put it.
I have done a lot of Googling but I cant seem to find a solution that works for asp webforms and all the videos etc I watch are all about removing a query sting tc.  I want to remove the folder names from my URL which as I said are displayed from where the page is stored in Visual Studio.
I don't want to do this in IIS, I want it done in the code.

Go to the complete details ...