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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal Reports and Netscape 7.0

Status
Not open for further replies.

dawn1217

Programmer
Sep 9, 2002
12
0
0
US
I have been successfully viewing Crystal Reports through a web application in Netscape using the netscape plugin viewer. This no longer works in Netscape 7.0. Has anyone had any success with this? Thanks for any help.
Here is the code I'm currently using: (the onUnload seems to be ignored)

<html>
<head>
<title>Crystal Decisions Report Viewer Plug-In</title>

</head>
<body bgcolor=&quot;#C6C6C6&quot; onUnload=&quot;CallDestroy();&quot;>
<P align=&quot;center&quot;>
<script language=&quot;javascript&quot;>
document.writeln('<EMBED name=&quot;startup&quot;');
document.writeln('type=application/x-ssreportviewer-plugin;version=8.0.0.2');
document.writeln('Pluginspage=&quot;/viewer/ActiveXViewer/en/get-npviewer.htm&quot;');
document.writeln('Width=100% ');
document.writeln('Height=100% ');
document.writeln('Param_URL=&quot;rptserver.asp&quot; ');
document.writeln('Param_EnableExportButton=&quot;true&quot; ');
document.writeln('Param_EnableHelpButton=&quot;false&quot; ');
document.writeln('Param_DisplayGroupTree=&quot;true&quot; ');
document.writeln('Param_DisplayToolbar=&quot;true&quot; ');
document.writeln('Param_EnableGroupTree=&quot;true&quot; ');
document.writeln('Param_EnablePrintButton=&quot;true&quot; ');
document.writeln('Param_EnableRefreshButton=&quot;false&quot; ');
document.writeln('Param_EnableZoomControl=&quot;true&quot; ');
document.writeln('>');
document.writeln('</EMBED>');

</script>

<script language=&quot;javascript&quot;>
function CallDestroy()
{
window.open(&quot;Cleanup.asp&quot;,&quot;Cleanup&quot;,&quot;status=no,toolbar=no,location=no,menu=no,scrollbars=no,width=1,height=1&quot;);
self.focus()
}
</script>
</p>
</body>
</html>
 
No. I just installed Netscape v7.02 and when I run &quot;NetscapePluginViewer.asp&quot; I get a screen telling me to &quot;Click here to get the Plugin.&quot; When I click there, I get a new window that says &quot;The requested URL /viewer9/ActiveXViewer/en/get-npviewer.htm was not found on this server&quot;.

Has anyone else gotten Netscape v7.002 to work?


Good Luck! [thumbsup2]
WindUp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top