vote up 3 vote down star
1

Hi,

I have a database table (sql server 2008) that I want to view data for, what is the quickest way of displaying this data?

(if it could have paging that would be perfect).

Would it be a gridview or ?

query: select * from testData

flag

5 Answers

vote up 3 vote down

Hello, if you're using .NET 3.5 you could use ASP.NET Dynamic Data:

http://www.asp.net/dynamicdata/

Hope this helps!

link|flag
vote up 2 vote down

via ADO.NET get your data into a DataSet or DataTable.

then:

gridview.DataSource = yourDataTable;
gridview.DataBind();
link|flag
vote up 0 vote down

Use LinqToSql and bind the results to a grid view.

link|flag
vote up 0 vote down

Gridview would be a perfect solution

you can have paging and sorting with that just by the properties AllowPaging="true" PageSize="##" AllowSorting="true" and if you want all the data and not just specific rows you can just do AutoGenerateColumns="true"

link|flag
can I embed the sql w/o doing codebhind? – Brian Leahy Nov 12 '08 at 20:46
@Blankman if you use an objectdatasource to hold the query – jmein Nov 12 '08 at 21:51
vote up 1 vote down

if its a web app, gridview control and use cache objects to hold data set... every time connecting to db is time consuming...

pros: performance cons: can't handle large tables unless you have server memory to handle it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.