如何从HTML表中获取值到ASP.net C#代码?

时间:2019-07-16 04:48:24

标签: c# asp.net datatable

我想从HTML表获取值到ASP.net C# 我正在使用这些代码:

  TableRowCollection rows = Table1.Rows;
  foreach(TableRow presentRow in rows) {
   presentKey = presentRow.Cells[2].Text;
  }
  Label1.Text = presentKey;

但是,这些代码无法正常工作并显示错误:

  

错误14无法隐式转换类型   System.Web.UI.HtmlControls.HtmlTableRowCollection改为   System.Web.UI.WebControls.TableRowCollection

1 个答案:

答案 0 :(得分:0)

您可以将属性runat="server"添加到要访问它的HTML标记中,并添加到C#代码中,然后在C#上可以将其保存到变量中,然后在任意位置调用它。