如何从 gridView 中行的特定字段获取同一行模板字段的参数
我使用 GridView 显示来自数据库的数据,gridView 绑定到 objectDataSource。 gridview 中的每一行代表属于用户的一个项目,我想向 gridView 添加另一个字段,该字段将显示用户详细信息(实际上位于数据库的不同表中)。
我不确定最好的方法是什么, 我尝试向 gridView 添加一个包含 DetailView 的 TemplateField, 并将其绑定到另一个对象数据源,但我不知道如何从该行的特定字段(userID 字段)获取参数。
任何建议都将受到欢迎...
I'm using GridView to display data from dataBase, the gridView is bound to objectDataSource.
each row in gridview represent an item that belongs to user and I want to add another field to the gridView that will display the users detail (that actually are in a different table at the dataBase).
I'm not sure what is the best way to do that,
I tried to add to the gridView a TemplateField that contain a DetailView,
and bound it to another objectdatasource but I don't know how to take a parameter from a specific field at the row-(the userID field).
Any suggestions would be welcome...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会比这更棘手一些。可以将userID设置为数据键,并在GridView的RowDataBound事件中,绑定详细信息视图。
并在后面的代码中:
It's going to be a little trickier than that. You can set the userID as a data key, and in the RowDataBound event of the GridView, bind the detail view.
And in the code behind: