Hi,
I am trying to make an application which will allow me to render HTML and display a web app. The first idea would be to use a browser control. The issue I am having is the web app responds to outside events such as scanners hooked up to the actual device. For example if I have a bar code scanner hooked up to a Windows Mobile 5.0+ device. When a scan event occurs the scanner reads the device, inserts it's it into the correct HTML field on the client side and then posts the page back to the server. Therefore I need the ability to manipulate the actual HTML document. The Web browser control for the Compact .NET framework does not give me this ability.
I'd also like the ability for the application to respond to custom Meta tags in the HTML page that gets served out. Therefore what I am thinking I really need is a .NET control capable of rendering HTML which allows access to the underlying HTML document as well.
Any suggestions or a better way of going about doing this.