A simple setting to change border color of textbox in asp.net. You can set style in internal and external style sheet. Use your textbox id
CSS | | copy code | | ? |
1 | <style type=”text/css”> |
2 | |
3 | #TextBox1 {border-color:red} |
4 | |
5 | <style> |
A simple setting to change border color of textbox in asp.net. You can set style in internal and external style sheet. Use your textbox id
CSS | | copy code | | ? |
1 | <style type=”text/css”> |
2 | |
3 | #TextBox1 {border-color:red} |
4 | |
5 | <style> |