我生成一个Table
并使用db中的一些内容动态构建单元格。每个单元格的信息比表中显示的信息多。我需要使整个单元格可以通过后面的代码调用另一个函数来生成一个新表。
以下是来自生成Table
:
TableCell tCell = new TableCell();
tCell.BackColor = (Color)converter.ConvertFromString(color_startBorderMC);
tCell.Text = Convert.ToString(row[column.ColumnName]); //fill some values into the TableCell
tCell.Attributes["onclick"] = Page.ClientScript.GetPostBackEventReference(this, "testMC"); //should call function in code behind
tRow.Cells.Add(tCell); //add current cell to table row
GetPostBackEventReference
需要__doPostBack
函数(我认为是JS函数)并在控制台中抛出以下错误:
未捕获的ReferenceError:未定义__doPostBack
如何使单元格可单击并使用参数从后面的代码调用方法?