vote up 1 vote down star

I have downloaded a .net source code from the Internet.

The source code has 2 projects.

First is a Windows class lib.

Second is a WeSite project whose name is [http://localhost/WebDemoCS].

When I run the Web Site, VS2005 searches that location and finds nothing. So the WebSite is not run.

How can I change this setting so that I can run it from VS2005's development web server.

flag

1  
What piece of source code did you download? Maybe we can look at it and see what you did wrong. – John Saunders Aug 19 at 16:06

3 Answers

vote up 2 vote down check

Sounds like you want to convert a web site project to a web application project?

Give this a try

link|flag
vote up 1 vote down

Don't use an included solution. Instead, make your own by:

  1. Open the class library project.
  2. Open the web site as a Web Site project in VS2005. When prompted, select File System to find the web site.

It sounds like the solution you are using is opening the web site from a Local IIS store (which was the only option in VS2003).

link|flag
No, actually, web sites were not an option at all in VS2003. – John Saunders Aug 19 at 16:28
@John: Since web sites weren't an option in VS2003, how could this sample been developed in VS2003 as per the OP's comment on my answer? I agree that we need to see some code, or a link to the origin of the sample. – Bears will eat you Aug 19 at 16:35
When VS2005 first came out, it didn't support web app's. So the VS2005 project converter converts the 2003 web app to a 2005 web site with the IIS open option for the site (unless it's been changed since I haven't used it in a while) . – Jeff S Aug 19 at 16:41
@Jeff: that's not what I was asking at all. John said that web sites weren't even an option in VS2003. – Bears will eat you Aug 19 at 16:50
John is right, web sites weren't an option in VS2003. But when you open a VS2003 web project in VS2005, it is automatically converted to a web site since originally, that was the only option. Plus, the only way I've seen [localhost/WebDemoCS] as a project name, is when you open a web site using the Local IIS option. – Jeff S Aug 19 at 17:23
vote up 0 vote down

Right click the Web Site Project, select "Property Pages," go to "Start Options," and under "Server," select "Use default Web server." Also, make sure that the web site is set as the StartUp project for the solution.

Edit: try making a new Web Site Project in VS2005 and adding all the contents from the original project in.

link|flag
This is already there. But the problem continues. This web site project was developed using vs2003. VS2003 had no builtin development server. Hence the problem. Can you give me any solution? – JMSA Aug 19 at 15:48
What do you mean by "The name is [...]"? That's a URL. – Bears will eat you Aug 19 at 15:57

Your Answer

Get an OpenID
or

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