Re: Access web page without IEXPLORE.EXE
- From: "Nicholas Paldino [.NET/C# MVP]" <mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Wed, 28 Mar 2007 14:07:50 -0400
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.
--
- Nicholas Paldino [.NET/C# MVP]
- mvp@xxxxxxxxxxxxxxxxxxxxxxxxxxx
"[Joe]" <Joe@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:BBE496D7-2958-471A-B117-D7FC6D02F8B3@xxxxxxxxxxxxxxxx
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 .
.
- Prev by Date: Re: convert DateTime to UTC
- Next by Date: Re: downloading a single file using multiple threads
- Previous by thread: C# IDE - commenting / uncommenting
- Next by thread: How to get a DateTimePicker accept and show empty date (emty string/space/null)?
- Index(es):
Relevant Pages
|