Do you mean that you want to second page to open in a completely new
browser window? Or just open a page in the same window. If it's the
latter, you can use Response.Redirect(newPage) or Server.Transfer(newPage)
depending on which will suit your needs.
Chris
--------------------
[quoted text, click to view] >From: "EMW" <SomeOne@MicroSoft.Com>
>Newsgroups: microsoft.public.dotnet.framework.aspnet
>Subject: newbee question: How to call a second aspx
>Date: Fri, 9 Apr 2004 22:45:01 +0200
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.2800.1158
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165
>Lines: 10
>Message-ID: <40770b4f$0$41750$5fc3050@dreader2.news.tiscali.nl>
>Organization: Tiscali bv
>NNTP-Posting-Date: 09 Apr 2004 22:45:03 CEST
>NNTP-Posting-Host: 212.182.176.131
>X-Trace: 1081543503 dreader2.news.tiscali.nl 41750 212.182.176.131:4675
>X-Complaints-To: abuse@tiscali.nl
>Path:
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed00.sul.t-online.de!t-onlin
e.de!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!transit.news.xs4all.nl!
195.241.76.212.MISMATCH!tiscali!transit1.news.tiscali.nl!dreader2.news.tisca
li.nl!not-for-mail
[quoted text, click to view] >Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.framework.aspnet:224734
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
>
>I have created a page in aspx and after a click on a button, a new page
>should open.
>How is this possible?
>I tried it doing it like in vb.NET with opening a new form, but it doesn't
>work.
>
>rg,
>Eric
>
>
>
You probably want to use Response.Redirect or Server.Transfer.
Response.Redirect(NextPageURL) will actually respond back to the browser,
and tell it to request the NextPageURL. Server.Transfer will, on the server,
redirect to the page - the URL in the browsers address bar will be left as
the original page, and if this doesn't matter, its the most efficient.
Or do you mean open up in a new browser window (the above solutions will
normally change the page in the existing browser window)
HTH,
Pete Beech
[quoted text, click to view] "EMW" <SomeOne@MicroSoft.Com> wrote in message
news:40770b4f$0$41750$5fc3050@dreader2.news.tiscali.nl...
> I have created a page in aspx and after a click on a button, a new page
> should open.
> How is this possible?
> I tried it doing it like in vb.NET with opening a new form, but it doesn't
> work.
>
> rg,
> Eric
>
>
it is the email adres from an example.
"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> schreef in bericht
news:%23b2Z6roHEHA.2720@TK2MSFTNGP11.phx.gbl...
[quoted text, click to view] > BTW, are you from Microsoft or just spoofing their email address?
>
> "EMW" <SomeOne@MicroSoft.Com> wrote in message
> news:40770b4f$0$41750$5fc3050@dreader2.news.tiscali.nl...
> >I have created a page in aspx and after a click on a button, a new page
> > should open.
> > How is this possible?
> > I tried it doing it like in vb.NET with opening a new form, but it
doesn't
> > work.
> >
> > rg,
> > Eric
> >
> >
>
both actually.
"Pete Beech" <peter_beech@hotmail.nojunk.com> schreef in bericht
news:uOrkggoHEHA.3720@tk2msftngp13.phx.gbl...
[quoted text, click to view] > You probably want to use Response.Redirect or Server.Transfer.
>
> Response.Redirect(NextPageURL) will actually respond back to the browser,
> and tell it to request the NextPageURL. Server.Transfer will, on the
server,
> redirect to the page - the URL in the browsers address bar will be left as
> the original page, and if this doesn't matter, its the most efficient.
>
> Or do you mean open up in a new browser window (the above solutions will
> normally change the page in the existing browser window)
>
> HTH,
> Pete Beech
>
> "EMW" <SomeOne@MicroSoft.Com> wrote in message
> news:40770b4f$0$41750$5fc3050@dreader2.news.tiscali.nl...
> > I have created a page in aspx and after a click on a button, a new page
> > should open.
> > How is this possible?
> > I tried it doing it like in vb.NET with opening a new form, but it
doesn't
> > work.
> >
> > rg,
> > Eric
> >
> >
>
>