user70192
user70192

Reputation: 14204

ASP.NET - Virtual PC

I have created an ASP.NET application on my local machine. In order to test this application in IE 6, I have created a VPC. I am trying to connect to this web application through the VPC. However, I cannot connect to it. I can however connect to the internet.

What am I doing wrong?

Upvotes: 1

Views: 254

Answers (3)

Jason Berkan
Jason Berkan

Reputation: 8884

What is the URL you are using to go to your site? If you are using localhost, you will need to change that to the actual IP address of your development machine, as localhost on the Virtual PC image will be a different IP address than localhost on the development machine.

Upvotes: 0

Cylon Cat
Cylon Cat

Reputation: 7201

Can you ping from the virtual PC? If not, you have network configuration issues.

Otherwise, check firewalls, and make sure that port 80 is open and sending traffic to IIS.

Upvotes: 1

Justin Grant
Justin Grant

Reputation: 46683

there are many possibilities. first I'd consider would be any firewall rules on the ASP.NET side preventing incoming HTTP connections.

Upvotes: 0

Related Questions