如何在浏览器中添加数据到数据库ASP.NET(C#)为什么下面的代码不能添加到数据库?
<%@pagelanguage="C#"%><%@importnamespace="System.Data"%><%@importnamespace="System.Da...
<%@page language="C#"%>
<%@import namespace="System.Data"%>
<%@import namespace="System.Data.SqlClient"%>
<%@import namespace="System.Data.OleDb"%>
<html>
<script language="C#" runat="server">
void page_load(object serder, EventArgs e)
{
SqlConnection sqlcon=new SqlConnection("Data Source=MICROSOF-B8570C;uid=sa;pwd=;Initial Catalog=infor");
DataSet ds=new DataSet();
sqlcon.Open();
SqlDataAdapter sqld=new SqlDataAdapter("select * from student",sqlcon);
SqlCommandBuilder objcmdbld=new SqlCommandBuilder(sqld);
sqld.Fill(ds,"tabstudent");
DataRow drow;
drow=ds.Tables["tabstudent"].NewRow();
drow[0]="97070705";
drow[1]="huang";
drow[2]=30;
drow[3]="beijing";
ds.Tables["tabstudent"].Rows.Add(drow);
ds.Tables["tabstudent"].AcceptChanges();
sqld.Update(ds,"tabstudent");
dg.DataSource=ds.Tables["tabstudent"].DefaultView;
dg.DataBind();
sqlcon.Close();
sqlcon=null;
labcontent.Text+="增加成功";
}
</script>
<body>
<form runat=server>
<asp:datagrid id=dg runat=server/><br>
<asp:label id=labcontent runat=server/><br>
</form>
</body>
</html>
具体一点,getinsertcommand或者getupdatecommand加在什么位置,如何写,谢谢! 展开
<%@import namespace="System.Data"%>
<%@import namespace="System.Data.SqlClient"%>
<%@import namespace="System.Data.OleDb"%>
<html>
<script language="C#" runat="server">
void page_load(object serder, EventArgs e)
{
SqlConnection sqlcon=new SqlConnection("Data Source=MICROSOF-B8570C;uid=sa;pwd=;Initial Catalog=infor");
DataSet ds=new DataSet();
sqlcon.Open();
SqlDataAdapter sqld=new SqlDataAdapter("select * from student",sqlcon);
SqlCommandBuilder objcmdbld=new SqlCommandBuilder(sqld);
sqld.Fill(ds,"tabstudent");
DataRow drow;
drow=ds.Tables["tabstudent"].NewRow();
drow[0]="97070705";
drow[1]="huang";
drow[2]=30;
drow[3]="beijing";
ds.Tables["tabstudent"].Rows.Add(drow);
ds.Tables["tabstudent"].AcceptChanges();
sqld.Update(ds,"tabstudent");
dg.DataSource=ds.Tables["tabstudent"].DefaultView;
dg.DataBind();
sqlcon.Close();
sqlcon=null;
labcontent.Text+="增加成功";
}
</script>
<body>
<form runat=server>
<asp:datagrid id=dg runat=server/><br>
<asp:label id=labcontent runat=server/><br>
</form>
</body>
</html>
具体一点,getinsertcommand或者getupdatecommand加在什么位置,如何写,谢谢! 展开
3个回答
展开全部
你光是初始化了一个SqlCommandBuilder的实例,而没有使用该实例的GetInsertCommand或者GetUpdateCommand等方法,必须调用其中一个方法,才能生成插入、更新或者删除命令。
就像楼下同志所说的一样,直接写在初始化方法之后。
就像楼下同志所说的一样,直接写在初始化方法之后。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@page language="C#"%>
<%@import namespace="System.Data"%>
<%@import namespace="System.Data.SqlClient"%>
<%@import namespace="System.Data.OleDb"%>
<html>
<script language="C#" runat="server">
void page_load(object serder, EventArgs e)
{
SqlConnection sqlcon=new SqlConnection("Data Source=MICROSOF-B8570C;uid=sa;pwd=;Initial Catalog=infor");
DataSet ds=new DataSet();
sqlcon.Open();
SqlDataAdapter sqld=new SqlDataAdapter("select * from student",sqlcon);
SqlCommandBuilder objcmdbld=new SqlCommandBuilder(sqld);
sqld.Fill(ds,"tabstudent");
DataRow drow;
drow=ds.Tables[0].NewRow();
drow[0]="97070705";
drow[1]="huang";
drow[2]=30;
drow[3]="beijing";
ds.Tables[0].Rows.Add(drow);
ds.Tables[0].AcceptChanges();
sqld.Update(ds,"tabstudent");
dg.DataSource=ds.Tables[0].DefaultView;
dg.DataBind();
sqlcon.Close();
labcontent.Text+="增加成功";
}
</script>
<body>
<form runat=server>
<asp:datagrid id=dg runat=server/><br>
<asp:label id=labcontent runat=server/><br>
</form>
</body>
</html>
<%@import namespace="System.Data"%>
<%@import namespace="System.Data.SqlClient"%>
<%@import namespace="System.Data.OleDb"%>
<html>
<script language="C#" runat="server">
void page_load(object serder, EventArgs e)
{
SqlConnection sqlcon=new SqlConnection("Data Source=MICROSOF-B8570C;uid=sa;pwd=;Initial Catalog=infor");
DataSet ds=new DataSet();
sqlcon.Open();
SqlDataAdapter sqld=new SqlDataAdapter("select * from student",sqlcon);
SqlCommandBuilder objcmdbld=new SqlCommandBuilder(sqld);
sqld.Fill(ds,"tabstudent");
DataRow drow;
drow=ds.Tables[0].NewRow();
drow[0]="97070705";
drow[1]="huang";
drow[2]=30;
drow[3]="beijing";
ds.Tables[0].Rows.Add(drow);
ds.Tables[0].AcceptChanges();
sqld.Update(ds,"tabstudent");
dg.DataSource=ds.Tables[0].DefaultView;
dg.DataBind();
sqlcon.Close();
labcontent.Text+="增加成功";
}
</script>
<body>
<form runat=server>
<asp:datagrid id=dg runat=server/><br>
<asp:label id=labcontent runat=server/><br>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
SqlCommandBuilder objcmdbld=new SqlCommandBuilder(sqld);
sqld.InsertCommand=objcmdbld.GetInsertCommand();
sqld.UpdateCommand=objcmdbld.GetUpdateCommand();
sqld.DeleteCommand=objcmdbld.GetDeleteCommand();
-----------------------------------------
看起来好像没什么问题,有调试错误信息吗?
sqld.InsertCommand=objcmdbld.GetInsertCommand();
sqld.UpdateCommand=objcmdbld.GetUpdateCommand();
sqld.DeleteCommand=objcmdbld.GetDeleteCommand();
-----------------------------------------
看起来好像没什么问题,有调试错误信息吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询