vote up 0 vote down star

I have a website with a mix of ASP (classic) and ASP.NET pages.

For some reason Visual Studio (specifically 2008 Pro) keeps trying to compile the ASP classic pages.

How do I prevent it from trying to compile the .asp pages?

Reason: I'm getting a ton of errors on a specific .asp file that includes a Class. I believe it's trying to compile it as a Visual Basic class instead of seeing it as a vBScript class. It should be skipping over .asp files anyway, correct?

Here is the error:

Property Get/Let/Set are no longer supported; use the new Property declaration syntax.

flag

76% accept rate

3 Answers

vote up 1 vote down check

Have you installed Service Pack 1? It addresses some issues with classic ASP.

link|flag
vote up 0 vote down

What is in the @Page directive on those classic ASP pages? Have you tried inserting <% @Page language="vbscript" %> Maybe this does it already?

link|flag
vote up 0 vote down

This is one solution. Go to the file explorer (in windows, not in vs), choose properties and make them hidden. This will stop Visual Studio from compiling the files.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.