I have gotten my page to work but don't quite understand what the difference is and would like an answer.
I have taken over a project that was basicly written for IE only. Now it has to work in at least a later version of Netscape. (6.2 and up)
The code on a navigation button was:
<INPUT TYPE="BUTTON" NAME="btnNext" VALUE="Next Page" onClick="javascript:window.navigate('ACHList.asp?CURPAGE=<%=iNext%>&rdoDate=<%=rdoDate%>&lstMonth=<%=lstMonth%>&txtDate=<%=txtDate%>&txtFrom=<%=txtFrom%>&txtTo=<%=txtTo%>');">
With this code it worked in IE but just sat there in Netscape.
I changed the begining of the code to read:
onClick="javascript:window.location=
So, simply put, I am using location instead of navigate.
Why did one work and not the other?
Thanks,
I have taken over a project that was basicly written for IE only. Now it has to work in at least a later version of Netscape. (6.2 and up)
The code on a navigation button was:
<INPUT TYPE="BUTTON" NAME="btnNext" VALUE="Next Page" onClick="javascript:window.navigate('ACHList.asp?CURPAGE=<%=iNext%>&rdoDate=<%=rdoDate%>&lstMonth=<%=lstMonth%>&txtDate=<%=txtDate%>&txtFrom=<%=txtFrom%>&txtTo=<%=txtTo%>');">
With this code it worked in IE but just sat there in Netscape.
I changed the begining of the code to read:
onClick="javascript:window.location=
So, simply put, I am using location instead of navigate.
Why did one work and not the other?
Thanks,