Connecting Tech Pros Worldwide Forums | Help | Site Map

newbee question: How to call a second aspx

EMW
Guest
 
Posts: n/a
#1: Nov 18 '05
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



Pete Beech
Guest
 
Posts: n/a
#2: Nov 18 '05

re: newbee question: How to call a second aspx


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.tiscal i.nl...[color=blue]
> 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
>
>[/color]


Ken Cox [Microsoft MVP]
Guest
 
Posts: n/a
#3: Nov 18 '05

re: newbee question: How to call a second aspx


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.tiscal i.nl...[color=blue]
>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
>
>[/color]

Chris Moore
Guest
 
Posts: n/a
#4: Nov 18 '05

re: newbee question: How to call a second aspx


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

--------------------[color=blue]
>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:[/color]
cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!newsfeed 00.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.tisc ali.nl!dreader2.news.tisca
li.nl!not-for-mail[color=blue]
>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
>
>
>[/color]

EMW
Guest
 
Posts: n/a
#5: Nov 18 '05

re: newbee question: How to call a second aspx


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...[color=blue]
> 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.tiscal i.nl...[color=green]
> >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[/color][/color]
doesn't[color=blue][color=green]
> > work.
> >
> > rg,
> > Eric
> >
> >[/color]
>[/color]


EMW
Guest
 
Posts: n/a
#6: Nov 18 '05

re: newbee question: How to call a second aspx


both actually.


"Pete Beech" <peter_beech@hotmail.nojunk.com> schreef in bericht
news:uOrkggoHEHA.3720@tk2msftngp13.phx.gbl...[color=blue]
> 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[/color]
server,[color=blue]
> 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.tiscal i.nl...[color=green]
> > 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[/color][/color]
doesn't[color=blue][color=green]
> > work.
> >
> > rg,
> > Eric
> >
> >[/color]
>
>[/color]


Ken Cox [Microsoft MVP]
Guest
 
Posts: n/a
#7: Nov 18 '05

re: newbee question: How to call a second aspx


Could you change it? Some of us highlight MS addresses.

"EMW" <SomeOne@MicroSoft.Com> wrote in message
news:40778d9f$0$41746$5fc3050@dreader2.news.tiscal i.nl...[color=blue]
> it is the email adres from an example.
>
>[/color]

Cor Ligthert
Guest
 
Posts: n/a
#8: Nov 18 '05

re: newbee question: How to call a second aspx


Hi Eric,

This is completly different than in windowforms, both is of course VB.net.

You got the right answer from Chris Moore, so I do not repeat it.

Cor


EMW
Guest
 
Posts: n/a
#9: Nov 18 '05

re: newbee question: How to call a second aspx


done!

"Ken Cox [Microsoft MVP]" <BANSPAMken_cox@sympatico.ca> schreef in bericht
news:eZO8ORwHEHA.1548@TK2MSFTNGP10.phx.gbl...[color=blue]
> Could you change it? Some of us highlight MS addresses.
>
> "EMW" <SomeOne@MicroSoft.Com> wrote in message
> news:40778d9f$0$41746$5fc3050@dreader2.news.tiscal i.nl...[color=green]
> > it is the email adres from an example.
> >
> >[/color]
>[/color]


Closed Thread