passing data to first page |
2/12/2004 12:47:39 PM |
ASPRunnerPro General questions | |
B
billprozac author
For those of us who are using the created pages with annon access, it would be nice to be able to create links to the page with search criteria already specified. |
|
![]() |
Sergey Kornilov admin 2/13/2004 |
Hi, <form method="POST" action="cars_list.asp" name="frmAdmin"> Â Â Â Â Â Â Â Â <input type="hidden" id="action" name="action" value="Search"> <input type="hidden" id="PageSize" name="PageSize" value="20"> <input type="hidden" id="SearchOption" name="SearchOption" value="Contains"> <input type="hidden" id="SearchField" name="SearchField" value="AnyField"> Â Â Â Â Â Â Â Â <input type="hidden" id="SearchFor" name="SearchFor" value="Any search text here"> </form> <a href="#" onClick="document.forms.frmAdmin.submit(); return false;">Click to see results</a>
|
S
|
spacearchive 4/19/2004 |
Hi, here is how it can be done: You will need to change target file name and search text. I hope this helps.
|
![]() |
Sergey Kornilov admin 4/20/2004 |
Davide, <a href="#" onClick="document.forms.frmAdmin.submit(); return false;">Click to see results</a>
<script language="JavaScript"> document.forms.frmAdmin.submit(); </script> |