Passing Parameter to Email Form.

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.
 
T

Thomas A. Rowe

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
==============================================
 

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