check if variable exists in dataset ?
please tell me.
try like this :
DataRow[] rows = dt.Select("Your Data Table Field ='" + What You want to find + "'"); if(rows.Length > 0) { Response.Write("Exists");
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.