HTML - INPUT tag question

I have some html embedded in my notes form.

On the web, I can populate the field nh_VPNU (via JS), and save and it gets processed on the Notes side into the Notes field “nh_VPNU”.

How can I display the saved text on the web?

I don’t know what to put in the “value” parameter of the input tag?

Thanks for any help!

Tina

Subject: HTML - INPUT tag question

Just add a field to the Notes form with the same name as input tag’s name.

Why are you using pass thru html for your field anyway? Why don’t you just use a form?

Subject: Pass-through Computed Text

  1. Add computed text and include the field name in the formula.2. Mark the computed text as pass-through HTML.

Example:

“<INPUT Name="MyFieldName" TYPE=hidden Value=”+MyFieldValue+“>”

Subject: RE: Pass-through Computed Text

Lawrence, thanks that was brilliant, exactly what i was looking for.

-Tina