VIsual Studio : ASP.NET Extra Page Files

Posted by Matthew on Stack Overflow See other posts from Stack Overflow or by Matthew
Published on 2010-03-24T20:12:47Z Indexed on 2010/04/19 15:53 UTC
Read the original article Hit count: 248

Filed under:
|

Is there any way to write a VS Add-In or something else that would allow me to be able to link files to an ASPX page in ASP.NET.

My goal is to be able to have this extra file created with every ASPX page, and then use a custom MS Build Task to analyze those files and do some stuff.

So for example, when I created "MyPage.aspx", I'd actually see these files on disk...

  • MyPage.aspx
  • MyPage.aspx.cs
  • MyPage.aspx.designer.cs
  • MyPage.aspx.MyExtension

I want to be able to see the file when I expand a page and be able to edit the file.

Possible?

© Stack Overflow or respective owner

Related posts about visual-studio

Related posts about ASP.NET