是否可以执行以下操作:
我有以下数据表
=================================
ID || Width || Value ||
=================================
size-1 || 50 || ||
name-1 || 100 || ||
zip-1 || 50 || ||
size-2 || 50 || ||
name-2 || 100 || ||
zip-2 || 50 || ||
=================================
我希望能够使用 textcontrolbox.text 值循环遍历数据表并更新值列
Session[sectionName] = test;
DataTable dt = (DataTable)Session[sectionName];
var strIDS = from p in dt.AsEnumerable()
select new
{
ID = p.Field<string>("ID")
};
foreach (var strID in strIDS)
{
TextBox tempBox = DynamicControlsHolder1.FindControl(strID.ID) as TextBox;
string val = tempBox.Text;
// This is where i want to be able to update the value column, but i can't figure out how to
// Can someone please help
}