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

asp and crystal reports with 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>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top