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!

the report change but the screen remain gray...... why?

Status
Not open for further replies.

MisterMo

Programmer
Mar 18, 2002
564
GB
I have been working to this for too long and I am a little fed up with it

this is the code
**************************************************
<%@ Language=VBScript %>
<HTML>

<HEAD>
<body bgColor=#BDBDFB>
</HEAD>
<%
dim kwd1, kwd2, kwd3, kwd4
kwd1 = Request.QueryString(&quot;rsFound&quot;)
Kwd2 = LTrim(RTrim(Left(kwd1, InStr(kwd1, &quot;/&quot;) - 1)))
Kwd3 = LTrim(RTrim(Mid(kwd1, InStr(kwd1, &quot;/&quot;) + 1)))
kwd4 = LTrim(RTrim(right(kwd3, len( kwd3)-1)))
kwd5 = right(kwd3, 1)
%>
<p align='center'>

<%if kwd5 = &quot;p&quot; then%>
<applet code=com.seagatesoftware.img.ReportViewer.ReportViewer codebase=&quot;../../../../../viewer/JavaViewer/&quot; id=ReportViewer width=90% height=80% ><PARAM NAME=ReportName value=&quot; <%else%>
<applet code=com.seagatesoftware.img.ReportViewer.ReportViewer codebase=&quot;../../../../../viewer/JavaViewer/&quot; id=ReportViewer width=90% height=80% ><PARAM NAME=ReportName value=&quot; <%end if%>
<PARAM NAME=ReportTitles value=&quot;Conflict Search&<%=uUrl%>&quot;>
<PARAM NAME=ReportParameter value=&quot;user0=live&password0=live&prompt0=<%=kwd2%>&prompt1=<%=kwd3%>&quot;>

<PARAM NAME=HasGroupTree VALUE=&quot;FALSE&quot;>
<PARAM NAME=HasRefreshButton VALUE=&quot;TRUE&quot;>
<PARAM NAME=ShowGroupTree VALUE=&quot;FALSE&quot;>
<PARAM NAME=HasPrintButton VALUE=&quot;TRUE&quot;>
<PARAM NAME=HasExportButton VALUE=&quot;TRUE&quot;>
<PARAM NAME=HasTextSearchControls VALUE=&quot;FALSE&quot;>
<PARAM NAME=CanDrillDown VALUE=&quot;true&quot;>
<PARAM NAME=PromptOnRefresh VALUE=&quot;FALSE&quot;>
<PARAM NAME=HasZoomControl VALUE=&quot;TRUE&quot;>
<param name=cabbase value=&quot;/viewer/JavaViewer/ReportViewer.cab&quot;>
</applet></p>

</BODY>
</HTML>
*********************************************************

when the user return to the previous page and choose another record, the applet get the new data but does not refresh the screen.

I have tried to pass the applet using response.write and document.write and also tried all the no-cache available within this forum.

I am seriously thinking of blowing the puter with C4 and if that will refresh the page.

Any takers???

Thanks
Mo MisterMo
Maurizio.urbano@ntlworld.com
Mob. (UK)07719071384
 
Sorry but I am a bit slow, what do you mean exctely MisterMo
Maurizio.urbano@ntlworld.com
Mob. (UK)07719071384
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top