hi
i use a gridview control with a template column which contains textbox as itemtemplate.
i'm trying to change the textbox's border color in runtime like this:
((TextBox)MyGrid.Rows[i].FindControl("txtEnter")).BorderColor = Color.Red;
but it doest change anything.
what am i duing wrong ?