試圖從gridview中的標籤傳遞參數,只傳遞第一行的標籤文本。從gridview傳遞參數
不確定缺少什麼。
protected void GV1_OnRowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "edit")
{
foreach (GridViewRow row in GridView1.Rows)
{
if (row.RowType == DataControlRowType.DataRow)
{
Label lbl_taskID = (Label)row.FindControl("lbl_taskID");
Session["TaskID"] = lbl_taskID.Text;
Response.Redirect("~/tasks_edit.aspx");
}
}
}
}
你調試了你的代碼嗎?哪一行發生錯誤?你的錯誤信息是什麼?要特別。 –
完全沒有錯誤 –