On certain pages I need the BACK TO LIST link on the _edit page to go to the DEFAULT.asp page (as opposed to the the page that it originated). So I changed:
<a href=default.asp onClick=""GotoPage( " & mypage & "); return false;"">Back to list</a>
and
<a href=default.asp onClick="GotoPage('<%=mypage%>'); return false;">Back to list</a>
I know that I need to also change the OnClick function, however I'm getting nothing but errors when I do so.
Ideas?