[來源: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";
}