Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have successfully hosted an asp.net project on my local IIS server.
When i browse from my machine by typing
http://localhost:81/Login.aspx
it runs correctly.
so now how can i access it from other PC.
Posted

VB
If your System  are conencted via Network , then you can use the Ip Address of your pc first   in the URL instead of the localhost and it will be accessible. http://localhost:81/Login.aspx is accessble in your pc and your ip address is 192.168.0.9 then use http://192.168.0.9/Login.aspx 

For get your pc ip write ipconfig in command prompt
 
Share this answer
 
If your PCs are conencted via LAN , then you can use the machinename in the URL instead of the localhost and it will be accessible.

E.g. http://mymachinename1:81/Login.aspx
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900