Datagrid, SQLReader and Paging? Shouldn't this work?

R

Roger

I have some code that uses a SQL Stored procedure to return some rows. I
would then like to have these rows show up in a datagrid.

sqlCmd = New SqlClient.SqlCommand("R_GetSiphonDetail", sCon)
sqlCmd.CommandType = CommandType.StoredProcedure
rdr = sqlCmd.ExecuteReader(CommandBehavior.Default)
DataGrid1.DataSource = rdr
DataGrid1.DataBind()

This works just fine as long as I don't turn on paging.

As soon as I check the paging option, then the grid will not show up at all.
Why?????


Thanks,

Rog
 
R

R. Thomas, aka Xtreme.Net

Hi Roger, using DataReader you wont be able to do pagination 'cause
DataReader provides forward only read.
I suggest you use a dataset to bind to your datagrid
P.S : If this post was usefull to you, please clikc 'Yes' on top of this
post. Thanks
Hth...
R. Thomas
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,767
Messages
2,569,570
Members
45,045
Latest member
DRCM

Latest Threads

Top