Re: Need to pass information into a web page.
From: clintonG (csgallagher_at_REMOVETHISTEXT@metromilwaukee.com)
Date: 07/16/04
- Next message: John Saunders: "Re: datagrid checkbox"
- Previous message: Wolfgang: "Running JSP page under ASP.NET. Is it possible?"
- In reply to: Paul: "Re: Need to pass information into a web page."
- Next in thread: Paul: "Re: Need to pass information into a web page."
- Reply: Paul: "Re: Need to pass information into a web page."
- Messages sorted by: [ date ] [ thread ]
Date: Thu, 15 Jul 2004 19:23:09 -0500
The Request object requires two trips to the server and can and will
affect performance.
Generally speaking, since ASP 3.0 and most especially with ASP.NET
the *only* reason to use the Request object to 'redirect' is when you
are redirecting to pages on another server or redirecting to pages that
are *not* .aspx files on the same server from which your code does the
redirection (or .asp files on the same server when using ASP 3.0).
You should be properly informed and as I am taking the responsibility
to do so I am telling you to learn to use the Transfer method when
your business process requires redirection. You also want to learn
the Execute method so you can learn how to return data to the calling
page when redirecting.
Start with MSDN documentation and refine your understanding with
Google searches such as those that follow. For the most part it can be
said that while it is still supported for reasons noted, the Request object
is obsolete.
Google: "transfer method"+"asp.net"
Google: 'execute method"+"asp.net"
--
<%= Clinton Gallagher
A/E/C Consulting, Web Design, e-Commerce Software Development
Wauwatosa, Milwaukee County, Wisconsin USA
NET csgallagher@ REMOVETHISTEXT metromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
"Paul" <Paul@discussions.microsoft.com> wrote in message
news:BC01A421-D6FF-46A6-9BEA-0A4A838F4AA5@microsoft.com...
> Hi Kevin, got it working, can ignore the prev reply. Thanks for the help.
> --
> Paul G
> Software engineer.
>
>
> "Kevin Spencer" wrote:
>
> > Response.Redirect(Request.QueryString("Redirect"))
> >
> > --
> > HTH,
> > Kevin Spencer
> > ..Net Developer
> > Microsoft MVP
> > Big things are made up
> > of lots of little things.
> >
> > "Paul" <Paul@discussions.microsoft.com> wrote in message
> > news:062ABE29-8A98-4755-9FF3-84E0723D524E@microsoft.com...
> > > Hi Kevin, thanks for the response.
> > > so in the login file what do I pass into the redirect statement as I
> > normally
> > > use it as shown below, with the redirect hardcoded in.
> > > Response.Redirect("denied.htm")
> > > --
> > > Paul G
> > > Software engineer.
> > >
> > >
> > > "Kevin Spencer" wrote:
> > >
> > > > <a
> > href="http://yourdomain.com/loginpage.aspx?Redirect=someotherpage.aspx">
> > > >
> > > > --
> > > > HTH,
> > > > Kevin Spencer
> > > > ..Net Developer
> > > > Microsoft MVP
> > > > Big things are made up
> > > > of lots of little things.
> > > >
> > > > "Paul" <Paul@discussions.microsoft.com> wrote in message
> > > > news:CF5A3BC4-650B-48EC-B64E-38B7DA34590B@microsoft.com...
> > > > > What I am trying to do is as follows.
> > > > > I have a page with 3 links,that direct the user to 3 different pages
> > when
> > > > selected after login.
> > > > > So all link selections will first direct the user to a login page.
> > Once
> > > > the user logs in then they are directed to the appropriate link.
> > > > > So for all 3 links they all go to a login page, but each link must
> > pass
> > > > information to the login in page, specifically the page to go to after
> > login
> > > > takes place.
> > > > > --
> > > > > Paul G
> > > > > Software engineer.
> > > >
> > > >
> > > >
> >
> >
> >
- Next message: John Saunders: "Re: datagrid checkbox"
- Previous message: Wolfgang: "Running JSP page under ASP.NET. Is it possible?"
- In reply to: Paul: "Re: Need to pass information into a web page."
- Next in thread: Paul: "Re: Need to pass information into a web page."
- Reply: Paul: "Re: Need to pass information into a web page."
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|