Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Create a seperate web page from within an aspx web page

Reply
Thread Tools

Create a seperate web page from within an aspx web page

 
 
S_K
Guest
Posts: n/a
 
      10-01-2007
Hi,

I need to create and display a completely new and seperate web page
from within an existing web page. Response.Redirect("localhost....")
dosen't do it because I have a SINGLE web page when I need two
seperate web pages.

Any ideas?

 
Reply With Quote
 
 
 
 
Norman Yuan
Guest
Posts: n/a
 
      10-02-2007
You mean opening a new browser window at CLIENT-SIDE and have a web page
shown in it, right?

You need to use client-side script to open a new browser window, not
server-side code (such as Response.Redirect("....").


"S_K" <> wrote in message
news: oups.com...
> Hi,
>
> I need to create and display a completely new and seperate web page
> from within an existing web page. Response.Redirect("localhost....")
> dosen't do it because I have a SINGLE web page when I need two
> seperate web pages.
>
> Any ideas?
>


 
Reply With Quote
 
 
 
 
Steve C. Orr [MCSD, MVP, CSM, ASP Insider]
Guest
Posts: n/a
 
      10-02-2007
The JavaScript window.open method is a common solution.
Here's more info:
http://SteveOrr.net/articles/ClientSideSuite.aspx
http://msdn.microsoft.com/library/de...ods/open_0.asp

Without JavaScript your only real solution is to use a hyperlink with the
target attribute set:
<a href="MyPage.aspx?myparm=1" target="_blank">Click Me</a>

--
I hope this helps,
Steve C. Orr,
MCSD, MVP, CSM, ASPInsider
http://SteveOrr.net


"S_K" <> wrote in message
news: oups.com...
> Hi,
>
> I need to create and display a completely new and seperate web page
> from within an existing web page. Response.Redirect("localhost....")
> dosen't do it because I have a SINGLE web page when I need two
> seperate web pages.
>
> Any ideas?
>


 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to fire off a completely seperate .aspx page from within an .aspx web page. S_K ASP .Net 1 10-02-2007 12:05 AM
How to fire off a completely seperate .aspx page from within an .aspx web page. S_K ASP .Net 0 10-01-2007 10:40 PM
How to fire off a completely seperate .aspx page from within an .aspx web page. S_K ASP .Net 0 10-01-2007 10:40 PM
How to fire off a completely seperate .aspx page from within an .aspx web page. S_K ASP .Net 0 10-01-2007 10:40 PM
Seperate validation for seperate user controls on same page moondaddy ASP .Net 2 10-16-2006 04:03 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57