我有一個gridview,我希望顯示標題爲「AccountManager」(列1)的列作爲行之間的標題/空間。如果名稱不同,以及每個賬戶管理器在每個「賬戶管理器」上方的空白/頭部中的列「總分」,「金額」和「利潤」的總和。在行之間插入標題如果Gridview中的名稱不同
這是我的GridView(HTML):
<asp:gridview runat="server" id="GridView2" showfooter="true"
autogeneratecolumns="false" GridLines="None" CssClass="table"
HeaderStyle-CssClass="th" RowStyle-CssClass="td" Width="100%" OnRowDataBound="GridView2_RowDataBound" onrowcreated="GridView2_RowCreated">
<columns>
<asp:boundfield datafield="Date" headertext="Date"
footerstyle-font-bold="true" >
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
<asp:boundfield datafield="AccountManager" headertext="AccountManager"
footerstyle-font-bold="true" >
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
<asp:boundfield datafield="" headertext="Total" footerstyle-font-bold="true"
footertext="Grand Total:" >
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
<asp:boundfield datafield="MIns" headertext="Mins"
footerstyle-font-bold="true" >
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
<asp:boundfield datafield="Amount" headertext="Amount" footerstyle-font-bold="true"
>
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
<asp:boundfield datafield="Profit" headertext="Profit"
footerstyle-font-bold="true">
<FooterStyle Font-Bold="True"></FooterStyle>
</asp:boundfield>
</columns>
<HeaderStyle BackColor="#CEFF99" ForeColor="Black" BorderColor="#C1FF80" BorderStyle="Solid"
BorderWidth="1px"></HeaderStyle>
<RowStyle CssClass="td"></RowStyle>
</asp:gridview>
請幫助...我soooooo麻煩米
你說你想要的客戶經理姓名顯示一次,並且,直到它改變了項目的其餘部分是空白的? –
是的......正好......在標題中,我希望僅顯示一次客戶經理名稱,直到其更改爲止......以及他的「分鐘」,「金額」和「利潤」的總和 –