Hi, all! Need to transfer some data - 20 characters or less, from a first asp page that is called by a user submitting a form on an html page. What downloads from this first asp page is affected by what the user submits. Usually it includes another form which, when the user fills out and submits, calls a second asp page and this, after putting the data through a regex, stores it in a cgi-bin file. This all works: BUT I need to get some data from the first page to the second to be stored along with the data there.
I have tried hidden inputs on the form send down from the first page, and also including client-side javascript on it, it executes on the client side and could fill in a hidden input - but it doesnt know what data the server side asp/javascript has. Is there a way to send data from the first page directly to the second? Or a way to get the server-side asp/javascript to fill out the hidden input field on the form before it downloads?
The server I am using is www.sti.net, it runs asp and Jscript, so the first line of code is always:
<%@Language=JSc ript%>
and there then follows all the html containing the meta, title, css, and so on, then the <% and the Request.Form statements that receive the form upload from the user on the html page. That all works.
Hoping for some suggestions! Dave
I have tried hidden inputs on the form send down from the first page, and also including client-side javascript on it, it executes on the client side and could fill in a hidden input - but it doesnt know what data the server side asp/javascript has. Is there a way to send data from the first page directly to the second? Or a way to get the server-side asp/javascript to fill out the hidden input field on the form before it downloads?
The server I am using is www.sti.net, it runs asp and Jscript, so the first line of code is always:
<%@Language=JSc ript%>
and there then follows all the html containing the meta, title, css, and so on, then the <% and the Request.Form statements that receive the form upload from the user on the html page. That all works.
Hoping for some suggestions! Dave
Comment