Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们可以在给定 GridView DataKey 值的情况下获取 GridViewRow 吗?
我知道我们可以遍历所有行并获取行,但我需要知道是否有快捷方式来查找行。
例如,如果我们有 RowIndex,我们可以很容易地找到 Row。是否有类似的方法来查找给定 GridView DataKey 值的行。
对此的任何帮助都将受到高度赞赏。提前致谢。
你可以这样做
string str = gvListing.DataKeys[rowIndex].Values["YourDataKeyName"].ToString();