这是我的 HTML:
<asp:Label ID="EmployeeIDlbl" runat="server" Text="<%# GetLabelCaption("Judges", "Employee Number",CaptionType.EditLabel) %>"></asp:Label>
其中:CaptionStyle
是Enumerator
我之前创建的,GetLabelCaption
函数返回从 sql 数据库中获取的字符串。
我想知道错误在哪里?!
在您提到文本的地方加上单引号,如下所示:
<asp:Label ID="EmployeeIDlbl" runat="server" Text='<%# GetLabelCaption("Judges", "Employee Number",CaptionType.EditLabel) %>'></asp:Label>
这将起作用
您需要将 Text 内容放在单引号(' ')
而不是双引号(" ")
中。所以试试这个
<asp:Label ID="EmployeeIDlbl" runat="server" Text='<%# GetLabelCaption("Judges", "Employee Number",CaptionType.EditLabel) %>'></asp:Label>