|
 |
asp_databases thread: database records
Message #1 by "Derek Halstead" <derekhalstead@u...> on Fri, 11 Aug 2000 7:43:49
|
|
Hi,
I have an asp page wherein i am displaying the records or a table called
"Clients". Now i would like to print all the information of each client.
Can anyone teach me how to do this in ASP? I would like to know how to
print data in asp.
Thanks alot in advance,
Derek
Message #2 by "Ken Schaefer" <ken@a...> on Sat, 12 Aug 2000 23:04:38 +1000
|
|
In your table:
<a href="page2.asp?ID=<% =objRS("ID")%>"><% =objRS("Clientname")%></a>
should give you a link to page2.asp with the ID appended.
On page2.asp check Request.QueryString("ID"), and select the appropriate
customer's details from the database and display on the page.
This is probably the simplest method
Cheers
Ken
----- Original Message -----
From: "Derek Halstead" <derekhalstead@u...>
To: "ASP Databases" <asp_databases@p...>
Sent: Friday, August 11, 2000 7:43 AM
Subject: [asp_databases] database records
> Hi,
> I have an asp page wherein i am displaying the records or a table called
> "Clients". Now i would like to print all the information of each client.
> Can anyone teach me how to do this in ASP? I would like to know how to
> print data in asp.
> Thanks alot in advance,
> Derek
>
> ---
> You are currently subscribed to asp_databases
$subst('Email.Unsub')
>
|
|
 |