Discussion in 'C#' started by kharearch, Sep 7, 2008.
please tell me How can I count number of records in dataset ? Thanks.
Select * from table Response.write rs.RecordCount
select count(*) as count from table response.write rs.fields("count")
first you have to select the table then count it by query you can do it easily.
In asp.net dataset.tables(0).rows.count
Separate names with a comma.