Using IE in my C# System.Windows.Forms CF2 application locally

  • Thread starter Thread starter Marcel Ruff
  • Start date Start date
M

Marcel Ruff

Hi,

i would like to develop a user interface designed
with HTML/CSS/Javascript in my C# System.Windows.Forms
application.

Is it possible to use the IE-renderer embedded but
wihtout sending URL requests to any server?

I would like to supply the HTML string locally to
the embedded IE and somehow get the HTML-form-submit
clicks locally in my C# code (no server accesses).

Further i would like to interact with the IE-Javascript
code somehow from my C# managed code (and vice versa).

Thanks for some help,

Marcel
 
You can use the WebBrowser control .NETCF v2.0. Push your own html to the
control by setting the DocumentText property.

Peter
 
Back
Top