from form to form, i know how to pass the selections a user would choose by name:
<input type="text" name="field1" size="1" style="visibility: hidden" value=<%=Request.Form("field1"%>>
<input type="text" name="field2" size="1" style="visibility: hidden" value=<%=Request.Form("field2"%>>
how can i pass it by name and value, i'll need to pass the name and value (being used as unrelated from one another) from a drop down box, sometimes i just need the value sometimes the users option's name, others times, i need to pass both, from .asp to .asp
I'm taking this info and making calculations with it.
how can i do it?
<input type="text" name="field1" size="1" style="visibility: hidden" value=<%=Request.Form("field1"%>>
<input type="text" name="field2" size="1" style="visibility: hidden" value=<%=Request.Form("field2"%>>
how can i pass it by name and value, i'll need to pass the name and value (being used as unrelated from one another) from a drop down box, sometimes i just need the value sometimes the users option's name, others times, i need to pass both, from .asp to .asp
I'm taking this info and making calculations with it.
how can i do it?