M
MarkMurphy
Is there a limitation in ASP.NET in this regard? From the aspx code
below, I can successfully call a Java applet. If I try the identical
thing in a user control ascx however, the control loads and hangs.
The Java console offers no clues. The server serves the aspx page
that contains the control, view source shows the expected html.
However, the applet does nothing. I'm integrating Quadbase
ExpressReport into a site. TIA.
<%@ Page language="c#" Codebehind="ReportView.aspx.cs"
AutoEventWireup="false" Inherits="MSWMD.ReportView" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>Report</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
xxx <APPLET id="Object1" height="100%"
archive="/lib/ReportViewerWithChart.jar" width="100%"
code="quadbase.reportdesigner.ReportViewer.Viewer" VIEWASTEXT>
<PARAM NAME="filename" VALUE="d:/program
files/EspressReport/Templates/<%=reportName%>.rpt">
<PARAM NAME="cabbase" VALUE="/lib/ReportViewerWithChart.cab">
</APPLET> yyy
</body>
</HTML>
below, I can successfully call a Java applet. If I try the identical
thing in a user control ascx however, the control loads and hangs.
The Java console offers no clues. The server serves the aspx page
that contains the control, view source shows the expected html.
However, the applet does nothing. I'm integrating Quadbase
ExpressReport into a site. TIA.
<%@ Page language="c#" Codebehind="ReportView.aspx.cs"
AutoEventWireup="false" Inherits="MSWMD.ReportView" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>Report</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
xxx <APPLET id="Object1" height="100%"
archive="/lib/ReportViewerWithChart.jar" width="100%"
code="quadbase.reportdesigner.ReportViewer.Viewer" VIEWASTEXT>
<PARAM NAME="filename" VALUE="d:/program
files/EspressReport/Templates/<%=reportName%>.rpt">
<PARAM NAME="cabbase" VALUE="/lib/ReportViewerWithChart.cab">
</APPLET> yyy
</body>
</HTML>