Date1 and date2 are defined on page before these two - of which I've posted parts of code
<INPUT id=datum1 name=datum1 readonly>
<a href="Javascript:;" onClick="calendar('datum1')")>
calendar function shows small table like calendar, then you click on day, and that date is shown in input field. I uset it to search db, with other parameters (name, adress).
<FORM name=form1 action="results.asp" method POST>
Submitting form, I get dates displayed on next, results.asp page which contains table with name, adress (from database) and two dates mentioned above, and image used for link to dateil page.
The main problem is - I want select table row in which are infos I want edit or input in other db table. I'm try to do this using result/detail pages from DW tutorial. On this way, form in which table with results is, not being submited. Hope you understand me ??
If I do form submit and go to detail page on same way (click on text or img), I get only first table row, no matter which one I choose.
<%
var date1
date1=Request.Form(date1)
%>
Same for date2, but will this work if form on previous page is not submitted ?
|