我在网格视图的标题中添加一个按钮,但Visual Studio突出显示这个错误:
‘The name EVAL does not exist in the current context’.
为什么会发生这种情况,如何解决?
<asp:gridview runat="server" > <Columns> ..... <asp:TemplateField> <ItemTemplate> <asp:Literal runat="server" ID="litFamily" Text='<%# EVAL("CompanyAddress") %>'></asp:Literal> </ItemTemplate> </asp:TemplateField> .....
解决方法
使用’Eval'(E – >大写字母,val>小写字母)代替’EVAL'(全部大写字母)