We have a huge project in ASP. When our project is opened in visual studio
2005 the asp file get displayed just fine, problems we have with the include
files, which have extension *.inc. These files are mostly not displayed as
source files. Intellisense is not working at all on these files, setting
breakpoint is sometime not possible too.
We had similar problems in visual studio 6, but got some rgs files to fix
it, and the *.inc file got the right handling bu the visual interdev.
Add the following to the top of each .inc file:
<%@ language="VBScript"%>
...and intellisense will work. Of course the pages won't work if left like
that, but you can comment it out after editing:
<%'@ language="VBScript"%>
> We have a huge project in ASP. When our project is opened in visual studio
> 2005 the asp file get displayed just fine, problems we have with the
[quoted text clipped - 4 lines]
> We had similar problems in visual studio 6, but got some rgs files to fix
> it, and the *.inc file got the right handling bu the visual interdev.
lukics - 14 Mar 2006 17:10 GMT
^The code inside still stays black (not recognized as code)
> Add the following to the top of each .inc file:
>
[quoted text clipped - 13 lines]
> > We had similar problems in visual studio 6, but got some rgs files to fix
> > it, and the *.inc file got the right handling bu the visual interdev.