GridView Property clarification
if i set, CommandArgument="<%#((GridViewRow)Container).RowIndex %>" to linkbu开发者_如何学运维tton(inside gridview's template field) will it return (i) GridViewRow of current Row or (ii)DataKey value of current row?
((GridViewRow)Container).RowIndex
Will return a string representation of a integer value of the current datagrid row. See MSDN. Having this piece of information you can get to the DataKey or the GridView row. If you need to know how I can update my answer.
Hope that helps
精彩评论