当前位置: 代码迷 >> ASP.NET >> 小弟我想在 aspx.CS 后台中写:this.TextBox1.BackColor = "006030" 为什么报错, 可是在aspx 页中就正常
  详细解决方案

小弟我想在 aspx.CS 后台中写:this.TextBox1.BackColor = "006030" 为什么报错, 可是在aspx 页中就正常

热度:8477   发布时间:2013-02-25 00:00:00.0
我想在 aspx.CS 后台中写:this.TextBox1.BackColor = "#006030"; 为什么报错, 可是在aspx 页中就正常啊


我想在   aspx.CS   后台中写:this.TextBox1.BackColor   =     "#006030 ";   为什么报错,   可是在aspx   页中就正常啊

------解决方案--------------------------------------------------------
this.TextBox1.BackColor = System.Drawing.ColorTranslator.FromHtml( "#006030 ");需要一个Color对象
------解决方案--------------------------------------------------------
using System.Drawing;
this.TextBox1.BackColor = ColorTranslator.FromHtml( "#006030 ");
------解决方案--------------------------------------------------------
别忘了引用:System.Drawing
  相关解决方案