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
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