Ask a Question related to ASP.NET General, Design and Development.
-
Sabre #1
closing frameset
Hi all
This is my code to open my frameset:
Dim myOpenWindowJS = "<script
language='javascript'>myWin=open('Frameset.htm','m ySmallFrameset','width=445
,height=350');</script>"
Response.Write(myOpenWindowJS)
How do I close the frameset from one of the windows within? Or maybe
response.redirect to another site.
Thanks
Graeme
Sabre Guest
-
FRAMESET HELP
trying my first hand at frames and framesets. I first created a site based on using one frameset, but found that limiting so I learned how to... -
Frameset Help Please
Hi, ive got a problem. I have a four divided frameset. One banner like frame at the top, two right and let menus and one relative center area.... -
Frameset
How do you do a frameset in an aspx page? -- ______________________ David Fetrow HelixPoint LLC. http://www.helixpoint.com... -
Movie Closing?? & Windows Closing??
> Can anyone tell me why when I create a projector, it closes after about 10th of a second, it simply opens and closes stright away. Do you have a... -
locked into frameset
I'm working on a coldfusion application in Dreamweaver, primarilly in code view. Somewhere along the way, Dreamweaver got the idea that one of my... -
S. Justin Gengo #2
Re: closing frameset
Graeme,
You could try either:
parent.window.close();
or
top.window.close();
Response.Redirect won't work for you because that would always occurr within
a single frame. You could however open a new window with javascript going to
the redirect page and then close the opener using code similar to that
above.
Sincerely,
--
S. Justin Gengo, MCP
Web Developer
Free code library at:
[url]www.aboutfortunate.com[/url]
"Out of chaos comes order."
Nietzche
"Sabre" <maximNOSPAM@wave.co.nz> wrote in message
news:e$KjvEYVDHA.2288@TK2MSFTNGP12.phx.gbl...language='javascript'>myWin=open('Frameset.htm','m ySmallFrameset','width=445> Hi all
>
> This is my code to open my frameset:
> Dim myOpenWindowJS = "<script
>> ,height=350');</script>"
>
> Response.Write(myOpenWindowJS)
>
> How do I close the frameset from one of the windows within? Or maybe
> response.redirect to another site.
>
> Thanks
> Graeme
>
>
>
>
>
S. Justin Gengo Guest
-
Sabre #3
Re: closing frameset
Thanks Justin. parent.window good!
"S. Justin Gengo" <sjgengo@aboutfortunate.com> wrote in message
news:%238sAM6YVDHA.424@TK2MSFTNGP11.phx.gbl...within> Graeme,
>
> You could try either:
>
> parent.window.close();
>
> or
>
> top.window.close();
>
> Response.Redirect won't work for you because that would always occurrto> a single frame. You could however open a new window with javascript goinglanguage='javascript'>myWin=open('Frameset.htm','m ySmallFrameset','width=445> the redirect page and then close the opener using code similar to that
> above.
>
> Sincerely,
>
> --
> S. Justin Gengo, MCP
> Web Developer
>
> Free code library at:
> [url]www.aboutfortunate.com[/url]
>
> "Out of chaos comes order."
> Nietzche
> "Sabre" <maximNOSPAM@wave.co.nz> wrote in message
> news:e$KjvEYVDHA.2288@TK2MSFTNGP12.phx.gbl...>> > Hi all
> >
> > This is my code to open my frameset:
> > Dim myOpenWindowJS = "<script
> >>> > ,height=350');</script>"
> >
> > Response.Write(myOpenWindowJS)
> >
> > How do I close the frameset from one of the windows within? Or maybe
> > response.redirect to another site.
> >
> > Thanks
> > Graeme
> >
> >
> >
> >
> >
>
Sabre Guest



Reply With Quote

