Not sure what is the particular problem. The simplest would be to create the
page server side with those hidden fields already filled with values. If you
have to get them from client side inputs you could use
getElementById('MyClientSideControlID').value='MyV alue' to fill the value of
a field form. The "form.submit" method allows to programmatically submit the
form...
My personal preference would be likely to do that server side using
System.Net.WebClient (it allows to send a POST query with form values to a
particular target page and get the response).
If you prfer doing still cleint side, you may want to be a bit more specific
about the exact point that causes the problem (not sure if it's filling the
hidden fields, submitting the data or whatever else...)
--
Patrice
"Fabio Mastria" <> a écrit dans le message de
news:
F9063969-6616-46FA-82EF-...
> My application has to call a webpage with some hidden field, fill their
> values with some parameters and then call the submit to the form which has
> the action property set to a page of another web application.
>
> all of this, did via javascript.
>
> how can i send the data to fill the hidden fields to this web form?
>
> Please help me, thank you!
> Fabio