GridView内にラベルがあり、このようなクエリでバインドしたいと思います。
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>