asp_databases thread: Moving between pages
Message #1 by "Sam E. Johnston II" <sam.johnston@j...> on Tue, 18 Dec 2001 12:20:22 -0500
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_0001_01C187BE.5E3E1EF0
Content-Type: text/plain;
charset="us-ascii"
Content-Transfer-Encoding: 7bit
I have a simple application where I solicit info from a visitor (zip
code) and post it to a second page where my asp vbs is written. Works
great.
How can a automatically return to my first page?
Now I am using a user required input:
<p><a href="url for first page.asp">RESET</a></p>
Message #2 by Sam Clohesy <sam@e...> on Tue, 18 Dec 2001 17:19:33 -0000
|
|
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_001_01C187E8.28ED0930
Content-Type: text/plain;
charset="iso-8859-1"
try response.redirect ("url for first page.asp") after your update/insert
etc has completed
Sam Clohesy
Project Manager
Tel: 0208 772 3958
E: samc@e...
W: http://www.etypemedia.co.uk <http://www.etypemedia.co.uk/>
-----Original Message-----
From: Sam E. Johnston II [mailto:sam.johnston@j...]
Sent: 18 December 2001 17:20
To: ASP Databases
Subject: [asp_databases] Moving between pages
I have a simple application where I solicit info from a visitor (zip code)
and post it to a second page where my asp vbs is written. Works great.
How can a automatically return to my first page?
Now I am using a user required input:
<p><a href="url for first page.asp">RESET</a></p>
$subst('Email.Unsub').
Message #3 by Mark Eckeard <meckeard2000@y...> on Tue, 18 Dec 2001 09:18:29 -0800 (PST)
|
|
If you want to do it automatically, use:
<%
response.redirect "somepage.asp"
%>
Mark
--- "Sam E. Johnston II" <sam.johnston@j...>
wrote:
> I have a simple application where I solicit info
> from a visitor (zip
> code) and post it to a second page where my asp vbs
> is written. Works
> great.
>
> How can a automatically return to my first page?
>
> Now I am using a user required input:
>
> <p><a href="url for first page.asp">RESET</a></p>
>
>
>
>
>
>
>
> $subst('Email.Unsub').
>
__________________________________________________
Do You Yahoo!?
Check out Yahoo! Shopping and Yahoo! Auctions for all of
your unique holiday gifts! Buy at http://shopping.yahoo.com
or bid at http://auctions.yahoo.com
Message #4 by "Ben Miller" <ben@m...> on Tue, 18 Dec 2001 11:12:56 -0600
|
|
This is a multi-part message in MIME format.
------=_NextPart_000_0042_01C187B4.F1D02E60
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
MessageTry <% Response.Redirect "url for first page.asp" %>
HTH,
Ben
----- Original Message -----
From: Sam E. Johnston II
To: ASP Databases
Sent: Tuesday, December 18, 2001 11:20 AM
Subject: [asp_databases] Moving between pages
I have a simple application where I solicit info from a visitor (zip
code) and post it to a second page where my asp vbs is written. Works
great.
How can a automatically return to my first page?
Now I am using a user required input:
<p><a href=3D"url for first page.asp">RESET</a></p>
$subst('Email.Unsub').
|