Click here to Skip to main content
15,886,110 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,
I have created a web project in asp.net 4.0 on the dev server under my username:
This is of filetype filesystem and NOT http
When I want to browse to it, I browse to:
http://localhost:12345/web/default.aspx

This works fine but my colleagues get the following message when browsing to the same address as above:
The message is:
http error 403 - forbidden

What is the solution to this problem please?
Thanks
Posted
Updated 6-Aug-12 5:32am
v2
Comments
ZurdoDev 6-Aug-12 11:42am    
Are they browsing to localhost or to your machine name?
arkiboys 6-Aug-12 11:56am    
Thanks

When you are colleagues are trying to access, use ur ip address or computer name,

localhost is accessible only to your own machine .

If your friends try to use localhost, it will try to check withing their machine that the page exists.

You have to use
http://computername:12345/web/default.aspx

or
http://10.1.190.2:12345/web/default.aspx
 
Share this answer
 
It is ok now.
Not sure why.
Thanks anyway.
 
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