如何获取gridview选择列

时间:2009-09-29 09:02:51

标签: c# asp.net

在asp.net C#vs05.window平台上工作我可以节省标签属性的价值。我如何在网上使用这个属性?通过使用tag属性,我可以轻松获得所选行.code snipt

class name object = (className)listviewName.SelectedItems[0].Tag;

我希望在对象中获取我的gridview选择的行值,如上所述。如何获得它?

1 个答案:

答案 0 :(得分:0)

     // Get the selected row from the GridView control.//

        GridViewRow selectRow = AuthorsGridView.SelectedRow

      //If the first column is, for example, LastName ...//

        String lastName = selectRow.Cells[1].Text;

GridViewRow on MSDN