错误:GetImage路径在当前上下文中不存在

时间:2012-10-01 11:32:34

标签: asp.net visual-studio data-binding

我将gridview绑定到GetImagePath以在编辑和删除按钮上显示图像。 as:

<asp:ImageButton ID="ibEdit" runat="server" CommandName="EditItem" CausesValidation="false" ImageUrl='<%#GetImagePath("edit.gif")%>' 
                    ToolTip="Edit Item" />
                &nbsp;&nbsp;&nbsp;&nbsp;
                <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 我错过了什么可能的代码或者是否有任何错误。谢谢你的任何帮助。

1 个答案:

答案 0 :(得分:1)

应该在(.cs)后面的代码中或在.aspx代码块中定义一个名为GetImagePath(字符串图像)的C#函数

public string GetImagePath(string image)
{
  // return full image path
}