Access web page without IEXPLORE.EXE

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I build an application that get a command from user and send it to server,
but I'm using Internet Explorer for that as following :

psi = new System.Diagnostics.ProcessStartInfo("IEXPLORE.EXE");
psi.Arguments =
"http://xxx.xxxx.60.3/webdialer/Webdialer?destination="+this.mytestBox.Text.Trim()+"\"";

pros =new System.Diagnostics.Process();
pros.StartInfo = psi;
pros.Start();

My question is how can I do the same :
"http://xxx.xxxx.60.3/webdialer/Webdialer?destination="+this.mytestBox.Text.Trim()+"\"";

without using IEXPLORE.EXE ?
xxx.xxxx.60.3 is my server IP .
 
Are you trying to get the results of the call to that URL? If that is
the case, then you will want to use the HttpWebRequest/HttpWebResponse
classes in the System.Net namespace.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top