Brandon,
In a URL, everything after the "?" symbol represents the query
string. The query string is a list of name/value pairs that allows you to
pass "variables" between web pages. On the page
"tour_list_region.jsp?Region=Australia", you will be able to check the value
of the "Region" querystring variable by using
request.getParameter("Region")
Raphael Morozov
Director of Research & Development
Volumebuy Inc.
http://www.volumebuy.com
-----Original Message-----
From: Brandon Ng [mailto:nodnarb_33@y...]
Sent: Sunday, June 17, 2001 12:30 PM
To: Pro_JavaServer_Pages
Subject: [pro_jsp] links
<a href="tour_list_region.jsp?Region=Australia">Australia</a>
Can anyone explain what does ?Region=Australia does? What is the use of it?