I'm converting someones code and placing it in a frame. The code contains the following <input> tag:
<INPUT name=cmd type=button value=Cancel onclick="top.location='maint_series.jsp?txt_series=<%=idSeries%>';">
This method wipes out my frames. Instead of using top.location as shown I'd like to only replace the contents of the current frame. How can I replace the contents in the current frame using this input tag? Thanks.
<INPUT name=cmd type=button value=Cancel onclick="top.location='maint_series.jsp?txt_series=<%=idSeries%>';">
This method wipes out my frames. Instead of using top.location as shown I'd like to only replace the contents of the current frame. How can I replace the contents in the current frame using this input tag? Thanks.