tags:

views:

248

answers:

4

I have Deployed my Asp.net web application on IIS 7.0 on localMachine(Server) and it is working fine there.

But when i try to access it from other machine in LAN, It gives me error that, 'Internet Explorer Can Not find this Page.'

I am accessing it on terminals using server name address and also tried using IP address. Even I have Shared the Application Folder in network.

A: 

Check the Windows Firewall on your Vista PC. You need to let TCP port 80 through.

tomfanning
A: 

Make sure that you enable the firewall and bind to IP addresses other than localhost.

maxwellb
A: 

Hi Bhushan.

You don't need to and should not share the application folder. This is a security risk as people on the network will be able to access the source code of the application. Also, it won't help with the problems you're having because a network share is not accessed over HTTP and so will never hit IIS and your web application. So you can turn off sharing for the folder and be safe in the knowledge that this isn't the issue.

Next, check your windows firewall and make sure incomming web trafic is allowed ("http" or "port 80").

Next I would have a look at the host headers that the site is running on.

Then maybe update your question with more detail.

Greg

Greg B
A: 

You may also want to ensure that IIS is listening on the correct IP Address. This problem can occur if you switch from a LAN connection to a wireless connection (for example when taking a work laptop home).

To Check this, open inetmgr and right-click on the 'Default Web Site' node. Verify that the IP Address entry is set to the current IP of your machine.

Peter Bernier