openning iexplore

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

Guest

Hi,

Currently am working with one window based application in C#. I would require to open a iexplore from my application. Now am able to open using "System.Diagnostics.Process.Start", but my requirement is i want to open one iexplore with some path also i want to pass some parameters. For example if i opne www.yahoo.com then i need to pass parameters for Userid and Password.

So please help me out how i can pass these type of parameters.

Thanks in advance...

Thanks,
Rajagopal.S
 
Hi Raju

Try

Process.Start("http://www.yahoo.com?userid=" & yourUserID & "&password=" &
yourPassword)

This should open the default browser.

HTH

Charles


raju said:
Hi,

Currently am working with one window based application in C#. I would
require to open a iexplore from my application. Now am able to open using
"System.Diagnostics.Process.Start", but my requirement is i want to open one
iexplore with some path also i want to pass some parameters. For example if
i opne www.yahoo.com then i need to pass parameters for Userid and Password.
 
Hi Charles,

It works fine. Thank you very much

Thanks
Rajagopal.S

----- Charles Law wrote: -----

Hi Raju

Try

Process.Start("http://www.yahoo.com?userid=" & yourUserID & "&password=" &
yourPassword)

This should open the default browser.

HTH

Charles


raju said:
require to open a iexplore from my application. Now am able to open using
"System.Diagnostics.Process.Start", but my requirement is i want to open one
iexplore with some path also i want to pass some parameters. For example if
i opne www.yahoo.com then i need to pass parameters for Userid and Password.
 
Back
Top