i want to retrive min and max value from dataset and those values use in for loop for display title in panel
String sql = \"select title, song_id from up_so
What about using this?
foreach(DataRow row in ds.Tables["title"].AsEnumerable()) { .... }