使用
SELECT table1.FullName,
SUM(table2.Asp_PointsAwarded) AS 'Table2 Total Points',
table3.Name,
table4.Asp_PointsAwarded
FROM table1
LEFT JOIN table3 ON table1.ParentCustomerId = table3.AccountId
INNER JOIN table2 ON table1.ContactId = table2.Asp_SalemadebyId
INNER JOIN table4 ON tab
当我调用ListView的DataBind()方法时,我得到以下异常消息
'Table' cannot have children of type 'ListViewDataItem'.
这是我的标记
<asp:ListView ID="lv" runat="server">
<LayoutTemplate>
<asp:Table ID="t" runat="server" CssClass="contentframework"&