html in pocket pc application

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Hello everybody! I'm developing a pocket pc application and basically my
application contains controls such as labels, textboxes and buttons. I
want to add a well modified text in my app and i'm thinking that the only
way to do this is by modifying my text via html. How can i add in a pocket
pc application an html page or add some html code in a control (label for
instance)? I know that i could utterly develop the app with asp pages but
i'm not so familiar with asp. Thank you in advance for reading my
post...Any help would be appreciated...
 
In .NETCF 2.0 and above you can add the WebBrowser control to your form. You
can populate this either by setting a url to a local (or remote) HTML
document or you can pass the raw html directly to the control through the
DocumentText property.

Peter
 
Back
Top