Link to home
Start Free TrialLog in
Avatar of motleycoder
motleycoder

asked on

Best way to display data from a SQL query

I would like to know the most efficient way to display data on a page within my site.  The datasource would be SQL database utilizing stored procedures.  The format I want to display (an author and their books) would ultimately look something like this:

John Grisham
 - The Firm
 - The Litigators
 - A Time To Kill

James Patterson
 - Kill Alex Cross
 - Toys

Harlen Coben
 - Deal Breaker
 - Tell No One

I'm seeing things on the web like datagrid, dataview, display through html, etc.  The data is stored in the same table, each having it's own row.  So for the above, there are 7 rows in the table with columns of Author and Book Title.  I'd like the easiest and mose efficient method.

Thanks in advance.


ASKER CERTIFIED SOLUTION
Avatar of Manoj Patil
Manoj Patil
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial