Opening URL in WinCE .Net through web browser

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

Guest

I have an application. From the application I give a link to some URL and
this needs to be opened from IE browser dynamically. Can anyone tell me how
to achieve this?
The version of WinCE .Net is 4.1
 
Use the OpenNETCF.Diagnostics.Process class which wraps the ShellExecuteEx
API call. Pass in your URL and it will open with the default application
(e.g. IE).

Process.Start("http://www.microsoft.com");

Peter
 
Back
Top