| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 671 人关注过本帖
标题:为什么update更新不了数据啊,,
取消只看楼主 加入收藏
guming
Rank: 4
等 级:业余侠客
威 望:5
帖 子:329
专家分:277
注 册:2006-11-9
结帖率:50%
收藏
 问题点数:0 回复次数:0 
为什么update更新不了数据啊,,
void dg_Cancel(Object Sender,DataGridCommandEventArgs e)
{
dg.EditItemIndex=-1;
dg.DataSource=thisDS;
dg.DataBind();
}
void dg_Update(Object Sender,DataGridCommandEventArgs e)
{
datacon();
int i=e.Item.ItemIndex;
TextBox thisBox=(TextBox)e.Item.FindControl("idbox");
thisDS.Tables["students"].Rows[i]["id"]=thisBox.Text;
thisBox=(TextBox)e.Item.FindControl("namebox");
thisDS.Tables["students"].Rows[i]["name"]=thisBox.Text;
thisBox=(TextBox)e.Item.FindControl("classbox");
thisBox=(TextBox)e.Item.FindControl("gradebox");
thisDS.Tables["students"].Rows[i]["grade"]=thisBox.Text;
thisBox=(TextBox)e.Item.FindControl("classbox");
thisDS.Tables["students"].Rows[i]["school"]=thisBox.Text;
thisBox=(TextBox)e.Item.FindControl("sexbox");
thisDS.Tables["students"].Rows[i]["sex"]=thisBox.Text;
OleDbCommandBuilder thisBD=new OleDbCommandBuilder(thisAdapter);
thisAdapter.SelectCommand.CommandText="Select * from students";
thisBD.RefreshSchema();
thisAdapter.UpdateCommand=thisBD.GetUpdateCommand();
thisAdapter.Update(thisDS,"students");
thisDS.Clear();
thisAdapter.Fill(thisDS,"students");
dg.DataSource=thisDS;
dg.DataBind();

}
在DataGrid中更新数据,但点击Upate命令之后,不会更新数据,,到底错在哪啊,请指教了。。。Thanks................
搜索更多相关主题的帖子: update 数据 
2006-11-16 09:57
快速回复:为什么update更新不了数据啊,,
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028420 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved