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!

URL Commands

Status
Not open for further replies.
Maybe, depending upon what status bar you mean in what version of what software package...

-k
 
Hi,
The only way I have found is to open a new window ( I use JavaScript to do it) and set the propeties to eliminate any stuff you do not want:
In the <HEAD> of an asp/csp page:
Code:
<SCRIPT  Language="JavaScript" >
function RunRpt(){
windowprops = "fullscreen=no,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=yes";
newloc = "[URL unfurl="true"]http://testserver/viewrpt.cwr?ID=14398&apsuser=administrator&apspassword=&apsauthtype=secEnterprise[/URL] "
reportWindow=window.open(newloc,"rptWindow",windowprops);
}
</SCRIPT>

That is only part of the code I really use, but it will run your report in a window with very limited attributes.

[profile]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top