你们有谁知道为什么这是不可能的?
<asp:Label ID="lblWordSes" Font-Bold="True" EnableViewState="True" ViewStateMode="Enabled" runat="server" Text="<%# string.Format(Eval("Word1").ToString()) %>"></asp:Label>
我正在尝试使用数据库中的数据设置文本值,但我可以使其工作。
答案 0 :(得分:0)
在Text属性中你需要这样做:
Text="<%# string.Format("{0}",Eval("Word1").ToString()) %>">