Gridview Rowcommand单元格到公共字符串

时间:2018-04-23 07:44:48

标签: c# asp.net string gridview rowcommand

我有一个带有rowcommand事件的gridview。

我希望在我的rowcommand之外使用temp字符串的值。 这可能吗?

protected void gwActivity_RowCommand(object sender, GridViewCommandEventArgs e)
{
   GridViewRow row = ((e.CommandSource as Control).NamingContainer as GridViewRow);
   string temp = row.Cells[1].Text;  
}

1 个答案:

答案 0 :(得分:1)

你可以在你的班级中创建一个私人领域,如:

addin

然后将private string _temp; 字符串分配给它:

temp