将删除图标添加到确认弹出窗口

时间:2011-08-15 19:46:31

标签: javascript asp.net

我有一个ASP.NET记录(在网格视图中),如下所示:

<ItemTemplate>
       <asp:ImageButton ID="btnSearchDeleteProperty" runat="server" ImageUrl="~/Images/delete2.png" 
OnClientClick="return confirm ( 'Are you sure you want to DELETE this record?' )" CommandArgument='<%# Eval("PropertyID") %>'
    OnCommand="_SearchDeletePropertyBtn_Command" ToolTip="Delete property" />
</ItemTemplate

&GT;

当然,看来是确认弹出窗口:

enter image description here

嗯, 您知道在弹出窗口左侧添加DELETE图像的方法吗? 我记得在旧的Visual Basic 6中,对于应用程序桌面有这些弹出窗口:信息,删除等。

有没有办法在这里调用删除?

2 个答案:

答案 0 :(得分:2)

您将需要创建自己的确认对话框,因为标准确认对话框不允许您向其添加任何内容。

看看jQuery UI对话框:

http://jqueryui.com/demos/dialog/

答案 1 :(得分:0)

不,不幸的是,你不能。你可以做的是从HTML创建你自己的对话框,并在那里有你的图像(比使用confirm()或alert()imo更好),但除此之外你不能。