Getting a record count for a filtered datasource

G

Greg Smith

I would like to display the filtered record count for a datasource used to
populate a gridview. I would like to change it every time the filter is
changed.

Is there a way to do this?


Any help is greatly appreciated.
 
M

Mark Rae

I would like to display the filtered record count for a datasource used to
populate a gridview. I would like to change it every time the filter is
changed.

Is there a way to do this?

DataSet MyDS = <create your dataset>;
MyDS.Tables[0].DefaultView.RowFilter = "<apply your filter>";
MyGridView.DataSource = MyDS.Tables[0].DefaultView;
int intRecordCount = MyDS.Tables[0].DefaultView.Count;
 

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,768
Messages
2,569,574
Members
45,048
Latest member
verona

Latest Threads

Top