How can i handle an aspx page in a web application with custom extension? Instead of test.aspx i want to use test.meExtension. I want to preserve intellisence and all the other thinks an aspx page has
Asked
Active
Viewed 212 times
0
-
Please take a look at [this](http://stackoverflow.com/questions/15263761/supporting-user-specified-file-extensions-in-custom-visual-studio-language-servi) and [this](http://stackoverflow.com/questions/4922861/register-custom-file-type-with-custom-ui-editor-in-visual-studio-2010) links – Beytan Kurt Mar 13 '13 at 12:45
1 Answers
1
You can use HttpContext.RewriteUrl method
in order to modify your url
Link : http://msdn.microsoft.com/en-us/library/system.web.httpcontext.rewritepath.aspx

Aghilas Yakoub
- 28,516
- 5
- 46
- 51