if(action=="updata")
{
int id=Convert.ToInt32(Request["Id"]); //取得要修改的Id
var newRow = new T_UserTableAdapter().GetDataById(id).Single(); //获取单条等于这个Id的数据到DataSet中
newRow.Tiele=TextBox1.Text;
newRow.Paiming=Convert.ToInt32(TextBox2.Text);
new T_UserTableAdapter().Updata(newRow);
}
Response.Redirect("http://www.baidu.com");
不用数据绑定控件的数据更新
时间: 2024-11-11 13:47:03