我想知道这是否是一种不好的做法。我有一页 50 行的数据网格,每行大约有 10 个文本框。页面功能非常简单,只需一个按钮即可在 ms sql 中更新和保存。当用户单击按钮时,需要很长时间才能保存。我在带有隐藏 id 字段 id 的 sql 循环中使用更新。简单更新表的最佳方法是什么?
for (int i=0; i<options_bind.Items.Count; i++)
{
if (((CheckBox)options_bind.Items[i].FindControl("check_Save")).Checked )
{
call sql update one by one here
}
}