0
我想將文本框綁定到數據源,以便我可以實現IDataErrorInfo。如何將TextBox綁定到數據源
我將如何實現,基本上做什麼
TextBoxClientRenewalDate.DataSource = contract.RenewalDate;
會做的功能,如果它存在。
我想將文本框綁定到數據源,以便我可以實現IDataErrorInfo。如何將TextBox綁定到數據源
我將如何實現,基本上做什麼
TextBoxClientRenewalDate.DataSource = contract.RenewalDate;
會做的功能,如果它存在。
我真的不知道你要找什麼,但通常你會值只是分配給Text
財產,像這樣:
TextBox1.Text = MyDataTable.Rows[0].Field<string>("SomeColumn");
我想你可以使用DataBinder
對象太:
//not positive here, but it should be close
TextBox1.Text = (string)DataBinder.Eval(MyDataTable, "SomeColumn");