1
我有內GridView的一個標籤,我想查詢像這樣的東西綁定吧..自定義綁定代碼表達式中的SQL查詢?
select COUNT(*)
from tbl_like
inner join Scrap on tbl_like.scrapid=Scrap.Id
where tbl_like.likestatus=1 and tbl_like.scrapid='DataBinder.Eval(Container.DataItem,"ScrapId")'
我知道上面的代碼將無法正常工作,我能做些什麼,使工作?
源代碼:
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# "Id of Scrap:"+DataBinder.Eval(Container.DataItem,"ScrapId") %>'></asp:Label>
</ItemTemplate>
它工作得很好。謝謝! – Arbaaz 2013-02-13 13:43:03