Blockquote
Hi, I have an table. I need to iterate,
for each(datarow r in datatable.rows){
foreach(datacolumns c in datatable.columns){
if() // need to write an condition
{
// apply css
}
else
{
//no need to apply css
}
}
}
I have an column as Menu_ID if MEnu_ID as an value "7" the dnt apply the css how to write an condition here.
Thank you.