HTML Control .NET, use of form fields

  • Thread starter Thread starter Martin
  • Start date Start date
Mark Arteaga said:
You won't be able to use this control to do what you require. Take a look at
this HTML control provided by IntelliProg
http://www.intelliprog.com/netcf/htmlctl.html. I know you can capture events
(ie clicking a link) but not sure about reading form field values.

Unless you feel like writing a simple webserver that will run on your PDA and
process the HTTP POST...

Seriously though, it -might- be possible for you to retrieve the data from the
URL if your form uses the GET method rather than a POST. I've not tried this,
so I don't know if the native browser component strips that info out before
handing you the link. If it passes the URL back untouched, you'll still have
to parse out the fields yourself.

If you're going to be using lots of forms to capture data, it might be an idea
to write your own simple forms renderer. That way you'll not have to load in a
fairly large native component.
 
Back
Top