[ASP.Net]CalendarExtender控制項在TextBox ReadOnly=True時取值失敗

在使用CalendarExtender控制項時,
如果TextBox設定為ReadOnly時,
會出現取值會為 null 的情形,
參考了~威筆記~

http://tgw1029.blogspot.tw/2010/04/ajaxcalendarextendertextboxreadonlytrue.html



不在設計模式中設定TextBox的唯獨屬性,而在codebehind的Page_Load事件中使用WebControl.Attributes 屬性動態加入唯獨屬性的設定。

TextBox_abc.Attributes.Add("readonly", "true");

留言