0

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

<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 ,我可能缺少什么代码或者是否有任何错误。感谢您的帮助。

4

1 回答 1

1

应该在代码后面 (.cs) 或 .aspx 代码块中定义一个名为 GetImagePath(string image) 的 C# 函数

public string GetImagePath(string image)
{
  // return full image path
}
于 2012-10-01T11:35:02.637 回答