Thursday, 12 November 2015

Filter DataTable with column value C#



                   string expression;

                    expression = "ControlId = '" + ControlId + "'";

                    DataRow[] foundRows;

                    // Use the Select method to find all rows matching the filter.
                    foundRows = UploadedFiles.Select(expression);
                    if (foundRows.Length > 0)
                      {

                       }

No comments:

Post a Comment