Intranet application[Resolved]
I am developing a web application in asp.net which will be used later as an internet application. I want my peers to use this application and send me their feedback during the development stages. I am not able to see this application from another user machine. I typed in http://localserver/app.aspx where localserver is the name of my machine. Can someone lead me in the right direction? I am working on Win XP Professional SP2. Thanks
Re: Intranet application[Resolved]
I am able to solve this. Besides adding Port 80 in the firewall exception, I had to make the authentication mode = None in the web.config file and get rid of deny user lines. Below is the code
HTML Code:
<authentication mode="None" />
<!--authorization>
<deny users="?" />
</authorization-->
Thanks for all the help Magiaus
Re: Intranet application[Resolved]
Yeah, I remember now. I had to do that.