gpt4 book ai didi

asp.net - 如何在后面的代码中获取 aspx 中的 DataKeyNames?

转载 作者:行者123 更新时间:2023-12-04 07:09:09 28 4
gpt4 key购买 nike

我需要在我的 ASP.NET 应用程序 (VB.NET) 的代码隐藏中获取 DataKeyNames。我怎么能得到那个?

最佳答案

这样(VB.NET代码):

 For Each dkn As String in GridView1.DataKeyNames
' -- Do something here with dkn
Next
DataKeyNames是一个字符串数组,因此在 GridView 中可以有多个字符串。您可以通过这种方式访问​​数组成员(示例):
Dim FirstKeyName as String = GridView1.DataKeyNames(0)

这是 documentation on MSDN of the DataKeyNames property .

关于asp.net - 如何在后面的代码中获取 aspx 中的 DataKeyNames?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/645605/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com