0
我有一個天的問題。這是我的情況:從面板訪問Gridview模板字段
我有一個Gridview Template
字段這是一個ImageButton
。單擊ImageButton
時,將打開一個模式pop up Panel
。我的面板裏面有一個取消按鈕。
我想要的是當用戶點擊取消按鈕。我將我的
ImageButton.Visible = true;
但我似乎不能這樣做,因爲這個錯誤的
Unable to cast object of type WebControls.ContentPlaceHolder to type WebControls.GridViewRow
protected void Button1_Click1(object sender, EventArgs e)
{
Button button = sender as Button;
GridViewRow GridViewRow = (GridViewRow)button.NamingContainer;
GridViewRow.FindControl("stopImageButton").Visible = true;
this.StopTimeNotesPanel_ModalPopupExtender.Hide();
}
請幫助