我想在一個表內建立一個單元格。該電池將是一個按鈕,它應該打開。怎麼做我寫onclick事件在VB中按鈕onclick事件
下面的超級鏈接(電子郵件地址)是細胞在VB中的代碼,我建立
newCell = New TableCell
newCell.ID = "celRptSelect" & rptRow & "F"
newCell.Style("width") = rowRptSelectHeadF.Style("width")
newCell.CssClass = "TableButton"
newCell.Text = "SME"
newCell.Attributes.Add("onclick", "rpt.SmeEmail")
newCell.Attributes.Add("runat", "server")
newRow.Cells.Add(newCell)
rpt.SmeEmail是我從數據庫中獲取我提前
仍在尋求幫助。 –