标签:http io 数据 ar cti new res ad
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");
标签:http io 数据 ar cti new res ad
原文地址:http://www.cnblogs.com/blackHorseplan/p/3897610.html