Ugh. Bit of a simple one, I thought, but apparently not.
I'm kicking off with a link in an email with a variable reference number (?urn=xxx for example - the URN is generated in the original email program which works fine).
Clicking that takes you to a "Please give us your feedback!" webpage with a couple of questions. Submit that, and the values in the form and the reference number is written via a submit script to a text file.
I can get the form data to submit, but NOT my reference number (which I'm getting using
<%
urnval=request.querystring("urn")
response.write(urnval) for debugging to show I'm getting the value!
%>
)
then submit using a standard form, but I need the line
<input type="hidden" name="urnval" value=urnval>
but of course that writes the string "urnval" in my text file!
How in hell do I submit the VALUE of the variable urnval, rather than the text?
Preferably with ASP or javascript - if it's not possible I have someone here who is a PERL/PHP guy and can do it all very simply, but it'd be nice to know...