ASP.NET 2.0中ReadOnly的TextBox 的解決方案

來源:互聯網
上載者:User

[來源:AppDev-SYSK 118] 有時候,我們不希望使用者直接編輯TextBox,而是希望通過用戶端指令碼的方式來設定

內容,一般的做法是設定TextBox的屬性ReadOnly為true。但在ASP.NET 2.0裡有了變化,設定了ReadOnly為true

的TextBox,在伺服器端不能通過Text屬性擷取在用戶端設定的新內容,在Reflector裡比較一下LoadPostData的

實現

.NET 1.1中,

bool IPostBackDataHandler.LoadPostData(string postDataKey, NameValueCollection postCollection)
{
      string text1 = this.Text;
      string text2 = postCollection[postDataKey];
      if (!text1.Equals(text2))
      {
            this.Text = text2;
            return true;
      }
      return false;
}

.NET 2.0中,

protected virtual bool LoadPostData(string postDataKey, NameValueCollection postCollection)
{
      base.ValidateEvent(postDataKey);
      string text1 = this.Text;
      string text2 = postCollection[postDataKey];
      if (!this.ReadOnly && !text1.Equals(text2, StringComparison.Ordinal))
      {
            this.Text = text2;
            return true;
      }
      return false;
}

就可以看出,如果設定了ReadOnly為true,從用戶端傳回的新的值是不被設定到Text屬性的。

想要保持.NET 1.*中的行為,建議的做法是設定用戶端屬性ContentEditable=false,參考

SYSK 118: ReadOnly or ContentEditable?
http://blogs.msdn.com/irenak/archive/2006/05/03/589085.aspx

其實如果是設定用戶端屬性的話,設定用戶端的readonly屬性應該也是可以的:

TextBox1.Attributes["readonly"] = "true";

Example:

 txtCOL_RR_RT_AREA.Attributes["contentEditable"] = "false";
            txtCOL_RR_RT_QUALITY.Attributes["contentEditable"] = "false";

 foreach (GridViewRow gvr in GridView1.Rows)
        {
            ((TextBox)gvr.FindControl("txtQUALITY")).Attributes["readonly"] = "true";
            ((TextBox)gvr.FindControl("txtAREA")).Attributes["readonly"] = "true";
        }

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.