M Mike Jun 2, 2004 #1 On my update screen i want to change the textbox color to Yellow only if the field is editable. How can i do that within code? thx
On my update screen i want to change the textbox color to Yellow only if the field is editable. How can i do that within code? thx
A Alexandre Soares Jun 2, 2004 #2 In the PageLoad event, you can do if(textbox.readonly) textbox.backcolor = Color.gray; else textbox.backcolor = Color.yellow;
In the PageLoad event, you can do if(textbox.readonly) textbox.backcolor = Color.gray; else textbox.backcolor = Color.yellow;