Ask a Question related to ASP.NET General, Design and Development.
-
Erik Veldkamp #1
How to open a page in a new window?
Hi there,
With the following statements:
Server.Transfer("Voorbeeld.aspx");
Response.Redirect("Voorbeeld.aspx?code="+Label1.Te xt.Trim());
I can open a page in an existing window. But I would like to open it in a
new window, like you can do with a hyperlink when you set the Target
property to _blank. How can I do this?
Thanks for your help.
Erik.
Erik Veldkamp Guest
-
I want a link on my page to open a new browser window
I want a link on my page to open a new browser window. In the new window I have a video.flv file, but I dont want all the explorer menus, icons and... -
Flash Page goes blank with Javascript:window.open() to HTML pages
Hello, I just finished a site for my hobby/business of making blues guitar slides. Everything works great except that some browsers seem blank out... -
How can I open a new window and ensure the page loaded creates a NEW session?
Normally if this is done, the new window will be in the SAME session as the opening window. I don't want to abandon the session of the opening... -
open page in new window, VBscript + ASP
Gazing into my crystal ball I observed "Raphael Gluck" <iwish i could tell you @alas blame the spammers> writing in... -
make all links on page open in new browser window
Tom I started using this method from an article at Sitepoint.com a couple of months ago. It's very easy to accomplish and it validates against... -
Sabre #2
Re: How to open a page in a new window?
Maybe something like ...
Response.Write("<script language='javascript'
type='text/javascript'>OptionsWindow=open('Options.aspx', 'OptionsWindow',
'width=830, height=630, top=50, left=50, resizable=yes, toolbar=no,
scrollbars=yes')</script>")
You'd need to work on your querystring.
Hope this helps, Graeme
"Erik Veldkamp" <erik.veldkamp@wxs.nl> wrote in message
news:bgik9v$41u$1@reader10.wxs.nl...> Hi there,
>
> With the following statements:
> Server.Transfer("Voorbeeld.aspx");
>
> Response.Redirect("Voorbeeld.aspx?code="+Label1.Te xt.Trim());
>
> I can open a page in an existing window. But I would like to open it in a
> new window, like you can do with a hyperlink when you set the Target
> property to _blank. How can I do this?
>
> Thanks for your help.
>
>
> Erik.
>
>
Sabre Guest
-
Saravana #3
Re: How to open a page in a new window?
Check out this article, this will help you,
[url]http://www.microsoft.com/india/msdn/articles/PopupCalendarinASP.aspx[/url]
--
Saravana
Microsoft India Community Star,MC**
[url]www.ExtremeExperts.com[/url]
"Erik Veldkamp" <erik.veldkamp@wxs.nl> wrote in message
news:bgik9v$41u$1@reader10.wxs.nl...> Hi there,
>
> With the following statements:
> Server.Transfer("Voorbeeld.aspx");
>
> Response.Redirect("Voorbeeld.aspx?code="+Label1.Te xt.Trim());
>
> I can open a page in an existing window. But I would like to open it in a
> new window, like you can do with a hyperlink when you set the Target
> property to _blank. How can I do this?
>
> Thanks for your help.
>
>
> Erik.
>
>
Saravana Guest



Reply With Quote

