I have page with table in which are results from db, and two dates entered by user on previous page (used in query to search db). There can more results, I resolve this using repat region behaviour in DW (maybe should be in that forum ?). In each row there is link to next page using ID connected to data from DB.
<a href="detail.asp?ID=<%=(Recordset2.Fields.Item("ID").Value)%>"><img src="images/link.jpg" /></a>
And by this all data from database is display on that next page(as you see, called "deatil.asp"). But how to display this two dates which are not in database ? (inputed in two textfields) I need to transfer them somhow to that next page because it's update page.
<a href="detail.asp?ID=<%=(Recordset2.Fields.Item("ID").Value)%>"><img src="images/link.jpg" /></a>
And by this all data from database is display on that next page(as you see, called "deatil.asp"). But how to display this two dates which are not in database ? (inputed in two textfields) I need to transfer them somhow to that next page because it's update page.