I want to search rows in my DataTable.
DataTable
I\'ve tried this:
protected void imggastsuche_Click(object sender, EventArgs e) {
If some one else needs return specifically a DataTable you can use the code below:
DataTable dtResult= tb.Select("CREATOR LIKE '%"+searchstring+"%'").CopyToDataTable();