2012-10-01 36 views
0

我將GridView綁定到GetImagePath以在編輯和刪除按鈕處顯示圖像。 爲:錯誤:GetImaePath不存在於當前上下文中

<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

應該有代碼後面(的.cs)或在的.aspx代碼塊中定義的名稱GetImagePath(字符串圖像)的C#函數

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

由於先生。忘記聲明此功能 –

+0

歡迎您! –

相關問題