Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing parameters
Message
 
To
04/03/2001 20:43:47
Fausto Garcia
Independent Developer
Lima, Peru
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
00481783
Message ID:
00482581
Views:
12
There are two ways
#1 in url
mypage.asp?param1=str1¶m2=str2

request.querystring("param1").item returns str1
request("param2") returns str2

#2 submit from form
form action="mypage.asp"
input type="textbox" name="text1"

in mypage.asp
request.form("text1").value or request("text1") returns whatever the user typed in

check out asp101.com or 15seconds.com
Hope this helps.

By the way, what is it like being a programmer in Peru? Can someone make a living by being just a programmer?


>I am new developing ASP pages. How can I pass and retrieve parameters between ASP pages?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform