//GridView2控件的RowCommand事件 我也遇到一样的问题了,楼主是怎么解决的?
protectedvoidGridView2_RowCommand(objectsender,GridViewCommandEventArgse){if(e.Comman...
protected void GridView2_RowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "shanchu") //如果单击的是“选修”按钮
{
int index = Convert.ToInt32(e.CommandArgument); //取出选修课程所在的行索引
/******************************************************************/ (此行报错)
DataKey key = GridView1.DataKeys[index]; //创建DataKey集合接收该行的主键
/******************************************************************/
string stuID = GridView2.DataKeys[index].Values[0].ToString().Trim(); //取出学号主键值
string courceID = GridView1.DataKeys[index].Values[0].ToString().Trim();//取出课程编号主键值
string teaID = GridView1.DataKeys[index].Values[1].ToString().Trim(); //取出教师编号主键值
string userName = Session["userName"].ToString();
string connStr = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
string SqlStr = "delete from Elect where stuID='" + userName + "' and courceID='" + courceID + "' and teaID='" + teaID + "'";
try
{
SqlConnection conn = new SqlConnection(connStr);//创建连接对象
if (conn.State.ToString() == "Closed") //如果连接关闭,打开连接
conn.Open();
SqlCommand comm = new SqlCommand(SqlStr, conn);
comm.ExecuteNonQuery(); //执行插入选修课程
comm.Dispose();
if (conn.State.ToString() == "Open") //如果连接打开,关闭连接
conn.Close();
}
catch (Exception ex) //异常处理
{
Response.Write("数据库错误,错误原因:" + ex.Message);
Response.End();
}
}
} 展开
{
if (e.CommandName == "shanchu") //如果单击的是“选修”按钮
{
int index = Convert.ToInt32(e.CommandArgument); //取出选修课程所在的行索引
/******************************************************************/ (此行报错)
DataKey key = GridView1.DataKeys[index]; //创建DataKey集合接收该行的主键
/******************************************************************/
string stuID = GridView2.DataKeys[index].Values[0].ToString().Trim(); //取出学号主键值
string courceID = GridView1.DataKeys[index].Values[0].ToString().Trim();//取出课程编号主键值
string teaID = GridView1.DataKeys[index].Values[1].ToString().Trim(); //取出教师编号主键值
string userName = Session["userName"].ToString();
string connStr = ConfigurationManager.ConnectionStrings["ConnectionString"].ConnectionString;
string SqlStr = "delete from Elect where stuID='" + userName + "' and courceID='" + courceID + "' and teaID='" + teaID + "'";
try
{
SqlConnection conn = new SqlConnection(connStr);//创建连接对象
if (conn.State.ToString() == "Closed") //如果连接关闭,打开连接
conn.Open();
SqlCommand comm = new SqlCommand(SqlStr, conn);
comm.ExecuteNonQuery(); //执行插入选修课程
comm.Dispose();
if (conn.State.ToString() == "Open") //如果连接打开,关闭连接
conn.Close();
}
catch (Exception ex) //异常处理
{
Response.Write("数据库错误,错误原因:" + ex.Message);
Response.End();
}
}
} 展开
3个回答
ZESTRON
2024-09-04 广告
2024-09-04 广告
在Dr. O.K. Wack Chemie GmbH,我们高度重视ZESTRON的表界面分析技术。该技术通过深入研究材料表面与界面的性质,为提升产品质量与可靠性提供了有力支持。ZESTRON的表界面分析不仅涵盖了相变化、化学反应、吸附与解吸...
点击进入详情页
本回答由ZESTRON提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询