如何从 gridView 中行的特定字段获取同一行模板字段的参数

发布于 2024-11-29 11:40:25 字数 277 浏览 0 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你没皮卡萌 2024-12-06 11:40:26

这会比这更棘手一些。可以将userID设置为数据键,并在GridView的RowDataBound事件中,绑定详细信息视图。

<asp:GridView ID="GridView1" runat="server" DataKeyNames="UserID" OnRowDataBound="GridView1_RowDataBound">

并在后面的代码中:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    //get the data key
    int userID = (int)GridView1.DataKeys[e.Row.RowIndex]["UserID"];

    //get the nested details view control
    DetailsView dv = (DetailsView)e.Row.FindControl("DetailsView1");

    dv.DataSource = GetUserDetailsTable(userID); //your data source
    dv.DataBind();
}

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.

<asp:GridView ID="GridView1" runat="server" DataKeyNames="UserID" OnRowDataBound="GridView1_RowDataBound">

And in the code behind:

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    //get the data key
    int userID = (int)GridView1.DataKeys[e.Row.RowIndex]["UserID"];

    //get the nested details view control
    DetailsView dv = (DetailsView)e.Row.FindControl("DetailsView1");

    dv.DataSource = GetUserDetailsTable(userID); //your data source
    dv.DataBind();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文