|
 |
asp_web_howto thread: How to pass values to another ASP page without using forms
Message #1 by "Praveen" <praveenvvn@y...> on Thu, 16 May 2002 08:53:45
|
|
Hi, i need to pass certain values from an ASP page to another while the
former doesn't have any forms. I need to do this on the click of a button.
I'm new to ASP, can anybody help me in this regard. Thanks for replies.
-Praveen
Message #2 by "Jeroen Diderik" <jeroen@i...> on Thu, 16 May 2002 10:06:48 +0200
|
|
If it's a HREF then put there as URL: mypage.asp?MyVar=3DMyValue
If ASP knows the value: href=3D"mypage.asp?MyVar=3D<%=3DMyVar%>"
Then on the receiving page:
<%
MyVar =3D Request.QueryString("MyVar")
%>
Goodluck...
Jeroen Diderik
Brix Multimedia
Eleanor Rooseveltlaan 29
2719 AB Zoetermeer
Tel. +31(0)79 368 5892
Fax.+31(0)79 362 0006
@: jeroen@i...
-----Original Message-----
From: Praveen [mailto:praveenvvn@y...]
Sent: Thursday, May 16, 2002 10:54 AM
To: ASP Web HowTo
Subject: [asp_web_howto] How to pass values to another ASP page without
using forms
Hi, i need to pass certain values from an ASP page to another while the
former doesn't have any forms. I need to do this on the click of a
button.
I'm new to ASP, can anybody help me in this regard. Thanks for replies.
-Praveen
---
Improve your web design skills with these new books from Glasshaus.
Usable Web Menus
http://www.amazon.com/exec/obidos/ASIN/1904151027/ref=3Dnosim/theprogramm
e
r-20
Constructing Accessible Web Sites
http://www.amazon.com/exec/obidos/ASIN/1904151000/ref=3Dnosim/theprogramm
e
r-20
Practical JavaScript for the Usable Web
http://www.amazon.com/exec/obidos/ASIN/1904151051/ref=3Dnosim/theprogramm
e
r-20
|
|
 |