Question with launching browser with Diagnostics.Process.Start()

  • Thread starter Thread starter Ben Tan
  • Start date Start date
Ben said:
i'm trying to launch a browser with
Diagnostics.Process.Start("http://somesite.com?a=b&c=d");

the problem is that the URL for the site is always appended with a "/"
so when the browser comes up, my URL is "http://somesite.com/?a=b&c=d".
does anyone know of a way that i can launch the browser with a URL
that contains parameters?

What is the problem ? This is normal behaviour and W3C conform!
The paremeters will also be sent to the host; so what problem do you have?

You also can write "http://somesite.com/index.aspx?a=b&c=d", but this is
the same!


--
Greetings
Jochen

Do you need a memory-leak finder ?
http://www.codeproject.com/tools/leakfinder.asp
 
What is the problem ? This is normal behaviour and W3C conform!
The paremeters will also be sent to the host; so what problem do you
have?

You also can write "http://somesite.com/index.aspx?a=b&c=d", but this
is the same!

Jochen,

This is the first time i'm posting to usenet forums and I really surprised
by your quick reply. Thanks! As for the problem, you are right, it's not
a problem at all. I thought the parameters weren't being passed but it
seems that the name of the parameter was misspelled. Thanks again.

Ben
 
Back
Top