How to debug a project that includes ASP classic, ASP.NET, C #, and VB?

I have a website running on .NET 2.0. This site includes pages written in asp.net, asp classic in VB and some in C #. I created a solution file in visual studio and it just brings the aspx and aspx.cs pages. So I can't run the site locally as it doesn't see classic asp pages and even if I add classic asp pages to this project in visual studio it still doesn't work. Any idea for debugging this project?

thank

+3


source to share


1 answer


What are you using as your local server? The built-in one that ships with VS does not support classic ASP, but you can configure VS to use IIS or IIS Express as your test server.



VS gives you a little intellisense for classic ASP, but for debugging, the easiest way is to use the verbose error messages IIS gives you

+1


source







All Articles