我将 gridview 绑定到 GetImagePath 以在编辑和删除按钮处显示图像。作为 :
<asp:ImageButton ID="ibEdit" runat="server" CommandName="EditItem" CausesValidation="false" ImageUrl='<%#GetImagePath("edit.gif")%>'
ToolTip="Edit Item" />
<asp:ImageButton ID="ibDelete" runat="server" CausesValidation="false" OnClick="ibDelete_Click" ImageUrl='<%#GetImagePath("action_delete.gif")%>'
ToolTip="Delete Item" />
</ItemTemplate>
但是当我运行时,它会向我显示以下错误
GetImaePath Doesnot exist in current context
,我可能缺少什么代码或者是否有任何错误。感谢您的帮助。