check if variable exists in dataset ?
please tell me.
example : if you have bat field in datatable and you want to find the bat's name then do this :
string batName = "Gray Nickels"; DataRow[] rows = dt.Select("bat='" + batName + "'"); if(rows.Length > 0) { Response.Write("Exists");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.