I Have a senario where i am filling gridview on button click one by one , i want restrict user to fill one item again and again , he shold select one item only once ,..
if (GridView1.Rows.Count != 0)
{
foreach (GridViewRow row in GridView1.Rows)
{
what condition i should write here
}
}
Go to the complete details ...