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.
我在 asp.net 中的 gridview 有问题
我将字段设置为超链接,我想为每一行分配一个数字作为会话,以便在下一页中引用它
我怎样才能检索行号?
** 我有一列为每一行分配一个数字,我不知道这是否有帮助?
2个潜在的解决方案:
1) 如果您使用的是超链接,而不是链接按钮,请将查询字符串参数添加到超链接的 NavigateUrl。当单击链接并且用户导航到第二页时,使用 Request.QueryString 读取该值。
2) 如果您将 LinkButtons 与代码隐藏单击处理程序一起使用,请将您的编号分配给 CommandArgument 属性,您将能够在单击处理程序中访问该值。