在Gridview中,我正在使用圖像按鈕,希望根據字段中的值啓用。我的部分代碼是..想要啓用圖像按鈕基於Gridview字段中的值
<asp:ImageButton ID="btn_delete" **Enabled='<%# Eval("fld_status").ToString()=="1" ? "False" : "True" %>**' runat="server" ToolTip="Delete" OnClientClick="return confirm('Important Alert : Do you delete this item ?')" CommandName="del" CommandArgument='<%#Bind("fld_id") %>' />
而你的問題是什麼? –
如果fld_status = 1意味着,我想爲Image Button設置Enable =「False」。 – Bharathi
您是否嘗試過在您的GridView的DataItemBounded事件中執行此操作? –