当前位置: 代码迷 >> ASP.NET >> 在后台给TextBox设置只读属性的时候,设置Attributes["readonly"] = "readonly"取消 只读的又该如何设置呢
  详细解决方案

在后台给TextBox设置只读属性的时候,设置Attributes["readonly"] = "readonly"取消 只读的又该如何设置呢

热度:7655   发布时间:2013-02-25 00:00:00.0
在后台给TextBox设置只读属性的时候,设置Attributes["readonly"] = "readonly";取消 只读的又该怎么设置呢?
C# code
 //在这里加只读属性,如果在控件属性直接设置的话后台会读不到textbox里面的值            this.TextBox10.Attributes["readonly"] = "readonly";  //承运车主

这个是设置只读属性的,实际需求我需要先设置只读属性,然后再把只读属性去掉,请问怎么解决呢?

------解决方案--------------------------------------------------------
代码去除很很简单
TextBox1.Attributes.Remove("readonly");
  相关解决方案