what are this these things called at the end of the address, and how do i do it.
?=182
Thanks
Printable View
what are this these things called at the end of the address, and how do i do it.
?=182
Thanks
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")
%>