我在一个textbox控件上用bindingsource绑定了一个dataset表中的一个字段fcCustName.在代码中给这个字段赋值,语句大略如下:
DataRow drHdr = ((DataRowView)MasterBinding.Current).Row; 
drHdr["fcCustName"] = dsCustomer.Tables[0].Rows[0]["fcCustName"].ToString();
MasterBinding.EndEdit();在C#2005中这样的话,textbox控件上就会显示出新值的内容.我现在用2008,却显示不出了.请知道的解答一下.