
January 29th, 2001, 05:15 PM
|
 |
film at 11
|
|
Join Date: Aug 2000
Location: Portland, OR
Posts: 413
Time spent in forums: < 1 sec
Reputation Power: 13
|
|
You need this HTML:
<input type="button" value="Back" onClick="parent.location='mypage';">
Wrap that in an out.println(). An easy way to make sure it's not cached is to include the system time in the request:
Code:
out.println("<... onClick=\"parent.location='mypage?time="+System.currentTimeMillis()+"';\">");
|