script to open page in new window

Using JavaScript, I can open a document in a new window like so:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title></title>
<script type="text/javascript" language="JavaScript">
window.open("index.htm", "new",
"width 0,height=100,toolbar=no,resizable=no,menubar=no,loc ation=no,status=no,directories=no");
</script>
</head>
<body></body>
</html>

How would I do this using Classic ASP?
jp2code [ Do, 13 September 2007 17:17 ] [ ID #1819555 ]

Re: script to open page in new window

jp2code wrote on 13 sep 2007 in microsoft.public.inetserver.asp.general:

> Using JavaScript, I can open a document in a new window like so:
>
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml" >
> <head>
> <title></title>
> <script type="text/javascript" language="JavaScript">
> window.open("index.htm", "new",

use ,"_blank",

vut the settings of the browser prioritize

[off topic]

> "width 0,height=100,toolbar=no,resizable=no,menubar=no,loc ation=no,st
> atus=no,directories=no");
> </script>
> </head>
> <body></body>
> </html>
>
> How would I do this using Classic ASP?

You cannot, as ASP is serverside and has no notion
of windows, window tabs, etc.


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
exjxw.hannivoort [ Do, 13 September 2007 17:39 ] [ ID #1819557 ]

Re: script to open page in new window

Ok, then can I write some Classic ASP code to set browser values (size,
menubar, location, etc.) for the current page when it loads (which is all I
need)? If so, how?

"Evertjan." wrote:
>> How would I do this using Classic ASP?
>
> You cannot, as ASP is serverside and has no notion
> of windows, window tabs, etc.
jp2code [ Do, 13 September 2007 18:20 ] [ ID #1819559 ]

Re: script to open page in new window

"jp2code" wrote:
> Ok, then can I write some Classic ASP code to set browser values
> (size, menubar, location, etc.) for the current page when it loads
> (which is all I need)?

No.


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Dave Anderson [ Do, 13 September 2007 18:52 ] [ ID #1819561 ]

Re: script to open page in new window

"jp2code" <poojo.com/mail> wrote:

>Ok, then can I write some Classic ASP code to set browser values (size,
>menubar, location, etc.) for the current page when it loads (which is all I
>need)? If so, how?

Your ASP code will write out the javascript code that actually opens
the new window, right? You can write the parameters you want into the
javascript code at that time.

--
Tim Slattery
MS MVP(DTS)
Slattery_T [at] bls.gov
http://members.cox.net/slatteryt
Tim Slattery [ Do, 13 September 2007 22:10 ] [ ID #1819563 ]

Re: script to open page in new window

But JavaScript can not modify the window that it is in. Right?

So, basically, this can't be done.

Drats. That sure would have been slick if I could have gotten it to work.

"Tim Slattery" wrote:
>>Ok, then can I write some Classic ASP code to set browser values (size,
>>menubar, location, etc.) for the current page when it loads (which is all
>>I
>>need)? If so, how?
>
> Your ASP code will write out the javascript code that actually opens
> the new window, right? You can write the parameters you want into the
> javascript code at that time.
>
> --
> Tim Slattery
> MS MVP(DTS)
> Slattery_T [at] bls.gov
> http://members.cox.net/slatteryt
jp2code [ Do, 13 September 2007 22:25 ] [ ID #1819564 ]

Re: script to open page in new window

"jp2code" wrote:
> So, basically, this can't be done.
>
> Drats. That sure would have been slick if I could have gotten it to work.

So slick that you could have had your own exploit named after you.

Remember life before pop-up blockers? There's a reason you can no longer do
as much to the browser as you once could. Heck, IE once allowed you to open
windows off-screen. Imagine the fun pranks you could pull off with your
window out-of-sight. Whee!


--
Dave Anderson

Unsolicited commercial email will be read at a cost of $500 per message. Use
of this email address implies consent to these terms.
Dave Anderson [ Do, 13 September 2007 22:33 ] [ ID #1819565 ]

Re: script to open page in new window

Yeah, I suppose so.

My app is for my personal use. I've got something here for testing on, and
it needs to occupy the full size of the touch screen, which is on my second
display.

Right now, to get it to work, I have to execute one page with some script
that calls the other to open. With the other page open, I can close the
first one and get back to work.

I guess I can understand not wanting to put that ability out there, though.

"Dave Anderson" wrote:
> So slick that you could have had your own exploit named after you.
>
> Remember life before pop-up blockers? There's a reason you can no longer
> do as much to the browser as you once could. Heck, IE once allowed you to
> open windows off-screen. Imagine the fun pranks you could pull off with
> your window out-of-sight. Whee!
>
>
> --
> Dave Anderson
>
> Unsolicited commercial email will be read at a cost of $500 per message.
> Use of this email address implies consent to these terms.
jp2code [ Do, 13 September 2007 22:50 ] [ ID #1819566 ]

Re: script to open page in new window

"jp2code" <poojo.com/mail> wrote in message
news:%23nAopek9HHA.1184 [at] TK2MSFTNGP04.phx.gbl...
> Yeah, I suppose so.
>
> My app is for my personal use. I've got something here for testing on, and
> it needs to occupy the full size of the touch screen, which is on my
second
> display.
>
> Right now, to get it to work, I have to execute one page with some script
> that calls the other to open. With the other page open, I can close the
> first one and get back to work.
>
> I guess I can understand not wanting to put that ability out there,
though.
>

Sounds like you need kiosk mode.

iexplorer.exe -k "<url>"


--
Anthony Jones - MVP ASP/ASP.NET
Anthony Jones [ Fr, 14 September 2007 10:41 ] [ ID #1820560 ]

Re: script to open page in new window

"jp2code" <poojo.com/mail> wrote:

>But JavaScript can not modify the window that it is in. Right?

Hmm... IE supports window.resizeBy(...) and window.resizeTo(...)
methods (http://msdn2.microsoft.com/en-us/library/ms535873.aspx# and
click "methods"). These are non-standard, so you can't depend on any
other browser to support them. I don't know whether Firefox does or
not.

--
Tim Slattery
MS MVP(DTS)
Slattery_T [at] bls.gov
http://members.cox.net/slatteryt
Tim Slattery [ Fr, 14 September 2007 14:48 ] [ ID #1820564 ]
Webserver » microsoft.public.inetserver.asp.general » script to open page in new window

Vorheriges Thema: form </input> validation
Nächstes Thema: Re: Timeout Script help needed please.