C
|
cgphp 9/25/2011 |
To redirect from A to B, paste the following code in the javascript OnLoad event of the List page: $("input[type='button'][value='Print selected']").click(function(e) |
S
|
seanbull81 author 9/26/2011 |
thanks Cristian. but seems the new page won't accept any value from editid1. no matter what number i put after, the print page will show all records there. |
C
|
cgphp 9/26/2011 |
You can set a parameter in the URL like this: http://path/to/the/B/page?q=13
$strWhereClause = "id=".$_GET['q'];
|