|
-
Mar 5th, 2003, 07:06 AM
#1
Thread Starter
Addicted Member
how do i do "View.Html?=hello
what are this these things called at the end of the address, and how do i do it.
?=182
Thanks
-
Mar 5th, 2003, 08:22 AM
#2
Lively Member
hi!
its called querystring and is used to pass parameters
to a asp or php page..
ex:
hello.asp?id=100&name=gameboy
id and name are the parameter names and
100 and gameboy is the values
in your asp page u can get this values by
writing
<%
id = request.querystring("id")
name = request.querystring("name")
%>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|