I have an ASP.NET website in VS2008 with a bunch of .ashx files. Those files contain C# code as in:
<%@ WebHandler Language="C#" Class="..." %>
// followed by a C# impl below implementing IHTTPHandler
VS.NET checks the webhandler header to determine the language and supplies correct intellisense. VAX seems to just interpret these all as ASP.NET files and things like the navigation bar and alt-g do not work.
Is there any chance that VAX could recognize these files based on the header and supply proper intellisense?
FWIW, I've worked around this by changing .ashx extensions to be interpreted by VAX as CS files using the registry instructions found here: http://docs.wholetomato.com?W353
Thanks,
Wes