Passing Parameter to Email Form.

  • Thread starter Thread starter Max
  • Start date Start date
M

Max

Is it possible to pass a parameter to a hidden field in an email form using
the hyperlink URL? If so would you be kind enough to provide a sample of the
code? Thanks in advance.
 
If using ASP, then you can do the following:

formname.asp?content="value to pass"

then on the form you would do:

<input type="hidden" name="valuename" value="<%=Request.QueryString("content")%>">

If using the FP Form Handler, you will need to do this with JavaScript, and somebody else will have
to provide the how.
--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================
 
Back
Top