Access ASP.NET application in LAN
-
Hi, I had a problem. I can access my ASP.NET application through localhost and also through my IP in my system. But I am unable to connect from other system which is in same LAN. I was able to access before but now I am not able to access from other system. Is there anything to set in my IIS? Pls help me regarding this. I tried and check with these options: 1,Iam able to ping (ASP.NET application running system) from other system.. 2,I turn off windows firewalls on localhost--(windows xp) 3,while running application on localhost it's giving url http://localhost:1310/abomp/HomePage.aspx 4,iam trying with http://192.168.0.36/abomp/HomePage.aspx --(another system).. is there any wrong process.. Waiting for ur response.
murali krishna
-
Hi, I had a problem. I can access my ASP.NET application through localhost and also through my IP in my system. But I am unable to connect from other system which is in same LAN. I was able to access before but now I am not able to access from other system. Is there anything to set in my IIS? Pls help me regarding this. I tried and check with these options: 1,Iam able to ping (ASP.NET application running system) from other system.. 2,I turn off windows firewalls on localhost--(windows xp) 3,while running application on localhost it's giving url http://localhost:1310/abomp/HomePage.aspx 4,iam trying with http://192.168.0.36/abomp/HomePage.aspx --(another system).. is there any wrong process.. Waiting for ur response.
murali krishna
Well you have to use the port 1310, since the app is not at the default port for http (80). So for outside you have to use http://192.168.0.36:1310/abomp/HomePage.aspx Regards Sebastian
It's not a bug, it's a feature! Check out my CodeProject article Permission-by-aspect. Me in Softwareland.