Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I have a link in my ASP Page which

Status
Not open for further replies.

Progmatic

Programmer
Oct 17, 2000
33
CA
I have a link in my ASP Page which goes somethign like this

<A href=&quot;javascript:hrefclick()&quot;>Generate Report</A>

where hrefclick is a javascript function.This link works well in IE but somehow doesn't work in Netscape.For error message I get hrefClick is not defined,although it is there.It says soemthing about if statement being too large.

is there a limit to length of if statements in netscape.

thx
 
Your link works fine in Netscape® Communicator 4.76. Here is the code I used:

<A href=&quot;javascript:hrefclick()&quot;>Generate Report</A>
<SCRIPT LANGUAGE=javascript>
<!--
function hrefclick(){ alert(&quot;hrefclick&quot;); }
//-->
</SCRIPT>


-pete
 
Hi, Yeah It works fine in my web server.But at out clients side it doesn't work.I want to mention here that the data in the page is really big comapred to what I have in my enviornment.That's why I was thinking about it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top