Connecting to Web Server on LAN
-
I am very new to asp.net I am hosting a web server:
http://localhost:1094/test/Default.aspx
And I want to access that page from another computer on LAN.. What should be the url?? I am using this:http://172.16.216.188//localhost:1094/test/Default.aspx
But this doesnot help.. Does it require some special priviledges??Som
-
I am very new to asp.net I am hosting a web server:
http://localhost:1094/test/Default.aspx
And I want to access that page from another computer on LAN.. What should be the url?? I am using this:http://172.16.216.188//localhost:1094/test/Default.aspx
But this doesnot help.. Does it require some special priviledges??Som
-
http://172.16.216.187:1094/Default.aspx
This also dosent seem to work.. Windows firewall is off..Som
-
I tried this url on my own computer:
http://172.16.216.187:194/test/Default.aspx
instead ofhttp://localhost:194/test/Default.aspx
but this dosent seem to work.. What could be the issue?Som
use this http://172.16.216.187/test/Default.aspx in both system windows firewall should be in off. also test folder should be in web sharing.
Nothing is Impossible. Keep always Smiling... :)
-
use this http://172.16.216.187/test/Default.aspx in both system windows firewall should be in off. also test folder should be in web sharing.
Nothing is Impossible. Keep always Smiling... :)
rajanandal wrote:
use this http://172.16.216.187/test/Default.aspx in both system windows firewall should be in off. also test folder should be in web sharing.
Thanx for the reply.. It works.. Now my next question is.. How do you, run a program in Client's system using asp.net?? Like here in LAN, I want to run some program (say notepad) in the system in which I give the above url..
Som
-
rajanandal wrote:
use this http://172.16.216.187/test/Default.aspx in both system windows firewall should be in off. also test folder should be in web sharing.
Thanx for the reply.. It works.. Now my next question is.. How do you, run a program in Client's system using asp.net?? Like here in LAN, I want to run some program (say notepad) in the system in which I give the above url..
Som
can u expand ur question
Nothing is Impossible. Keep always Smiling... :)
-
can u expand ur question
Nothing is Impossible. Keep always Smiling... :)
Ok... Say there is a node A and from this I am trying to access node B (the web server) with url:
http://172.16.216.187/test/Default.aspx
Now what code shall I write in the Default.aspx.cs at Page_Load (at node B, the web server) such that any program (say notepad.exe) runs on node A. I tried :System.Diagnostics.Process.Start("notepad.exe");
But this does not help.. Any solution?? Thanx in advance..Som