私はこのクエリを使用しています:
select EmployeeId, receptionist_name, date_of_sale,
count(date_of_sale)
from FrontOffice
group By EmployeeId, receptionist_name, date_of_sale
order by date_of_sale
グリッド ビューを埋めるため。しかし、、、をバインドできるEmployeeId
のでreceptionist_name
、date_of_sale
グリッド ビューで 4 番目の列をバインドする方法と、グリッド ビューを埋める方法を教えてください。
更新:これが私が使用しているコードです:
<Columns>
<asp:BoundField HeaderText="Date" DataField="date_of_sale" />
<asp:BoundField HeaderText="Employe Id" DataField="EmployeeId" />
<asp:BoundField HeaderText="Receiptist Name" DataField="receptionist_name" />
<asp:TemplateField HeaderText="No. of Prospectus Sale">
<ItemTemplate>
<asp:Label ID="salecount" runat="server"
Text='<%# Eval("SaleCount") %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</Columns>