我将gridview绑定到GetImagePath以在编辑和删除按钮上显示图像。 as:
<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
我错过了什么可能的代码或者是否有任何错误。谢谢你的任何帮助。
答案 0 :(得分:1)
应该在(.cs)后面的代码中或在.aspx代码块中定义一个名为GetImagePath(字符串图像)的C#函数
public string GetImagePath(string image)
{
// return full image path
}