[SOLVED] button redirect to new page |
10/15/2013 2:59:18 PM |
ASPRunnerPro General questions | |
J
jmccullough author
I have inserted a button on my Item Entry List page. Now what I would like to do is when the button is clicked, redirect to my Joint Purchasing Bids Entry Add page. I have the following code in the Client Before tab of the button properties. location.href="http://localhost:8085/Joint_Purchasing_Bids_Entry_add.asp"; |
|
![]() |
Sergey Kornilov admin 10/15/2013 |
Your code look good. A bit more reliable and flexible way is to shorten the URL: location.href="Joint_Purchasing_Bids_Entry_add.asp";
|
J
|
jmccullough author 10/17/2013 |
Your code look good. A bit more reliable and flexible way is to shorten the URL: location.href="Joint_Purchasing_Bids_Entry_add.asp";
|