让细胞像一个按钮

时间:2015-08-24 13:15:00

标签: javascript c# asp.net

我生成一个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

如何使单元格可单击并使用参数从后面的代码调用方法?

0 个答案:

没有答案