views:

44

answers:

2

i have the source code of a website in the below address

http://www.sourcecodeonline.com/details/aspportal.html

How to run this website and edit it in VS 2008 ?

there is no solution files here ..

+1  A: 

You don't necessarily need a solution file. Did you do what was in the 'Setup instructions.txt'? Looks to me it wants you to add it to an existing installation of IIS. Follow the steps in this file. From there, you can do an 'Open > Web Site' from VS. Select the web (you will probably need to config it as an application) and you can debug it from there.

Don't forget to update the common/ado/connection_open.asp as referenced in the setup instructions.

asp316
+1  A: 

Looks like a Classic ASP project to me, not dotNET at all.

These links might help :

http://www.asp101.com/articles/john/classicaspinvsnet/default.asp

http://stackoverflow.com/questions/156930/classic-asp-intranet-and-new-asp-net-applications

CodeByMoonlight
Shouldn't matter if it's classic or .net, you can still work edit it in VS2k8.
asp316