|
こんにちは。 削除対象controlを非表示にしてはどうでしょうか。
〜 略 〜 tCell = New System.Web.UI.HtmlControls.HtmlTableCell tbox2.Width = 292 tbox2.ID = "TextBox_" & CStr(iCount)
tCell.Controls.Add(tbox2) tRow.Cells.Add(tCell)
tCell = New System.Web.UI.HtmlControls.HtmlTableCell tButton = New Button tButton.Text = "削除" tButton.ID = "addBtn_" & CStr(iCount)
tCell.Controls.Add(tButton)
' ********** 追 加 ********** AddHandler tButton.Click, AddressOf Button_Click
tRow.Cells.Add(tCell)
conditionTbl.Rows.Add(tRow)
iCount += 1
End Sub
' ********** 追 加 ********** private sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) { ' 削除ボタンを押したcontrolを非表示にする。 Ctype(sender, Button).Visible = false }
|