我有一个带有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;
}
答案 0 :(得分:1)
你可以在你的班级中创建一个私人领域,如:
addin
然后将private string _temp;
字符串分配给它:
temp