HTML Control .NET, use of form fields

I

Iain Simpson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top