Datagrid.. push button
-
hi i have a datagrid..in the datagrid there are two columns.. named "username" and push button columns named "send"(like edit button in the datagrid").. i have the two userid values "5,1"(i am getting thsese values dynamically".. now i have todisable the pushbuttons whose userid are 5 and 1. how can i do this in asp.net
-
hi i have a datagrid..in the datagrid there are two columns.. named "username" and push button columns named "send"(like edit button in the datagrid").. i have the two userid values "5,1"(i am getting thsese values dynamically".. now i have todisable the pushbuttons whose userid are 5 and 1. how can i do this in asp.net
hi, in the datarow bound event you can hide cell. like. if(e.row.cell[1].text == "1" || e.row.cell[1].text == "5" ) { e.row.cell[1].visible == false; } format as required.
Thanks, Sun Rays To get something you must have to try once. My Articles