Query string in URL's

K

K

I've used front page to take the displayed information a form of a link to
the query string in the URL.

How do i get frontpage to take the data from the URL?


i want to use the data to find and retrive the complete data from access
database.
 
C

clintonG

I don't quite understand your first statement but generally speaking we need
to use ASP or the PHP scripting language to get the value of a QueryString
variable. In ASP we use the Request.QueryString method to get the value of
the QueryString. Then that value is assigned to a variable which is reused
in a SQL statement for CRUD (Create Read Update Delete) operations.

Go to DevGuru [1] or W3Schools [2] and look up the Request object. You will
still have to learn to reuse the variable to get data from a database.
Google can be used to find hundreds of articles.

--
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/

[1] http://www.devguru.com/
[2] http://w3schools.com/
 
Top