是否可以在 ASP.NET Web 表单中嵌套 GridView?

发布于 2024-11-09 11:32:09 字数 1295 浏览 0 评论 0原文

我想知道是否可以像这样嵌套 GridView?

<asp:Panel ID="Panel1" runat="server"> 
    <ContentTemplate>
        <asp:GridView ID="gvNCReports" runat="server" Width="100%" BackColor="White" 
             AutoGenerateColumns="false" RowStyle-BorderColor="DarkGray" 
             BorderWidth="1">
             <AlternatingRowStyle BackColor="LightGray" />
                 <Columns>
                     <asp:BoundField DataField="assessmentName" 
                         HeaderText="Assessment Name" 
                         SortExpression="assessmentName" /> 
                     <asp:TemplateField>
                         <asp:GridView ID="gvNClinks" runat="server" Width="100%" 
                             BackColor="White" AutoGenerateColumns="false" 
                             RowStyle-BorderColor="DarkGray" BorderWidth="1">
                             <AlternatingRowStyle BackColor="LightGray" />
                             <Columns> </Columns>
                     </asp:GridView>
                 </asp:TemplateField>             
             </Columns>
         </asp:GridView>
     </ContentTemplate>
</asp:Panel>

我是网络表单的新手,因此非常感谢任何建议。

谢谢

I am wondering if it is possible to nest GridView's like this?

<asp:Panel ID="Panel1" runat="server"> 
    <ContentTemplate>
        <asp:GridView ID="gvNCReports" runat="server" Width="100%" BackColor="White" 
             AutoGenerateColumns="false" RowStyle-BorderColor="DarkGray" 
             BorderWidth="1">
             <AlternatingRowStyle BackColor="LightGray" />
                 <Columns>
                     <asp:BoundField DataField="assessmentName" 
                         HeaderText="Assessment Name" 
                         SortExpression="assessmentName" /> 
                     <asp:TemplateField>
                         <asp:GridView ID="gvNClinks" runat="server" Width="100%" 
                             BackColor="White" AutoGenerateColumns="false" 
                             RowStyle-BorderColor="DarkGray" BorderWidth="1">
                             <AlternatingRowStyle BackColor="LightGray" />
                             <Columns> </Columns>
                     </asp:GridView>
                 </asp:TemplateField>             
             </Columns>
         </asp:GridView>
     </ContentTemplate>
</asp:Panel>

I am new to web form, so any advice is much appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

杀手六號 2024-11-16 11:32:09

您实际上只需要使用外部的 OnRowDataBound 来绑定内部,否则这是完全可能的。

虽然我不喜欢这样做,但众所周知我自己也这样做。相反,我建议使用一组嵌套的重复器,因为标记通常更简单,但需要更多的 HTML。

You really just have to bind the inner using a OnRowDataBound for the outer, and otherwise it's entirely possible.

While I don't like it, I've been known to do it myself. I recommend, instead, doing a set of nested repeaters, as the markup is generally simpler, but requires a tad more HTML on your end.

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