如何将TextBox绑定到数据源

时间:2011-09-28 16:21:12

标签: asp.net data-binding c#-3.0

我想将文本框绑定到数据源,以便我可以实现IDataErrorInfo。

我如何实现基本上做什么的功能

TextBoxClientRenewalDate.DataSource = contract.RenewalDate;
如果它存在,

会这样做。

1 个答案:

答案 0 :(得分:1)

我不确定你在寻找什么,但通常只需将值分配给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");