|
 |
asp_web_howto thread: window properties
Message #1 by "Matthew Lohr" <mlohr@t...> on Fri, 16 Feb 2001 14:05:16 -0500
|
|
I need to create a hyperlink to open a window that has no toolbars or an
address bar at the top. I have a adobe report that I don't want users to
know the actual location of. I know there are ways around it but i need to
start here
Message #2 by "shivakumar mahalingam" <shivaulagam@h...> on Sat, 17 Feb 2001 19:12:51 +0530
|
|
hi Mathews,
Instead of hyperlink u can call a function like this
<a href="javascript:Open_Window()" onMouseOver="window.status='<window
name>';return true">Konfigurator</a></h4>
then in javascript
<script language="javascript">
<!-- Begin
function Open_Window() {
var wWind =
window.open("<FileName>","<windowname>","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resiza
ble=no,WIDTH=1000,HEIGHT=680");
wWind.focus();
}
// End -->
</script>
hope this will help you
shiva
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.
Message #3 by "Alex Shiell, ITS, EC, SE" <alex.shiell@s...> on Mon, 19 Feb 2001 09:49:05 -0000
|
|
window.open("Sample.htm",
"window2","height=200,width=400,status=no,toolbar=no,menubar=no,location=no"
);
-----Original Message-----
From: Matthew Lohr [mailto:mlohr@t...]
Sent: Friday, February 16, 2001 7:05 PM
To: ASP Web HowTo
Subject: [asp_web_howto] window properties
I need to create a hyperlink to open a window that has no toolbars or an
address bar at the top. I have a adobe report that I don't want users to
know the actual location of. I know there are ways around it but i need to
start here
________________________________________________________________________
Scottish Enterprise Network
http://www.scottish-enterprise.com
|
|
 |