GridView RowUpdating时间更新不了数据啊。愁死了
stringstrsql="updateBigClasssetBigClassName=@BigClassName,BigClassPic=@BigClassPic,Bi...
string strsql ="update BigClass set BigClassName=@BigClassName,BigClassPic=@BigClassPic,BigClassText=@BigClassText where ID=@ID";
SqlParameter[] param = new SqlParameter[]
{
new SqlParameter("@ID",SqlDbType.Int,4),
new SqlParameter("@BigClassName",SqlDbType.Char,10),
new SqlParameter("@BigClassPic",SqlDbType.Char,10),
new SqlParameter("@BigClassText",SqlDbType.Char,10)
};
param[0].Value =Convert.ToInt32(GridView1.Rows[e.RowIndex].Cells[0].Text);
param[1].Value =((TextBox)(GridView1.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString().Trim();
param[2].Value=((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString().Trim();
param[3].Value=((TextBox)(GridView1.Rows[e.RowIndex].Cells[4].Controls[0])).Text.ToString().Trim();
SqlHelper.ExecuteNonQuery(SqlHelper.GetConnection(), CommandType.Text, strsql, param);
忘记了,我把数据表打开了,其实这里面还有一个错误,我一直没整过来,说我的数据类型不对。。。 展开
SqlParameter[] param = new SqlParameter[]
{
new SqlParameter("@ID",SqlDbType.Int,4),
new SqlParameter("@BigClassName",SqlDbType.Char,10),
new SqlParameter("@BigClassPic",SqlDbType.Char,10),
new SqlParameter("@BigClassText",SqlDbType.Char,10)
};
param[0].Value =Convert.ToInt32(GridView1.Rows[e.RowIndex].Cells[0].Text);
param[1].Value =((TextBox)(GridView1.Rows[e.RowIndex].Cells[2].Controls[0])).Text.ToString().Trim();
param[2].Value=((TextBox)(GridView1.Rows[e.RowIndex].Cells[3].Controls[0])).Text.ToString().Trim();
param[3].Value=((TextBox)(GridView1.Rows[e.RowIndex].Cells[4].Controls[0])).Text.ToString().Trim();
SqlHelper.ExecuteNonQuery(SqlHelper.GetConnection(), CommandType.Text, strsql, param);
忘记了,我把数据表打开了,其实这里面还有一个错误,我一直没整过来,说我的数据类型不对。。。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询