如何用c#向客户端显示确认对话框并使用结果
本文关键字:对话框 结果 确认 显示 何用 客户端 | 更新日期: 2023-09-27 18:10:55
我有一个通用的处理程序,从用户得到确认后,从一个位置删除文件,这是他们真正想要的。
我的代码是:public class DeleteFilePDF : IHttpHandler {
public void ProcessRequest (HttpContext context) {
System.Web.HttpRequest request2 = System.Web.HttpContext.Current.Request;
string strSessVar2 = request2.QueryString["fileVar"];
//MessageBox.Show(strSessVar2);
if (File.Exists(strSessVar2))
{
DialogResult dlgRes = MessageBox.Show("Do you really want to delete the file?", "Program Message", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (dlgRes == DialogResult.Yes)
{
try
{
File.Delete(strSessVar2);
HttpContext.Current.Response.Redirect("PDFAllFilesDisplay.aspx", false);
}
catch (Exception ce)
{
}
}
}
}
public bool IsReusable {
get {
return false;
}
}
}
我的ImageButton
代码:
<asp:ImageButton runat="server" ToolTip="Delete File" ID="lnkDelete" OnClick="DeleteFile" CommandArgument='<%# Container.DataItemIndex %>' ImageUrl="~/delete.png" Width="50px" Height="50px" />
My ImageButton
code-behind:
protected void DeleteFile(object sender, EventArgs e)
{
string strFile = GridView1.Rows[Convert.ToInt32(((ImageButton)sender).CommandArgument.ToString())].Cells[0].Text;
string strFolderFile = strDirectory + strFile;
//MessageBox.Show(strFolderFile);
Response.Redirect("DeleteFilePDF.ashx?fileVar=" + strFolderFile);
}
一切都可以在调试环境中正常工作,但除此之外,我无法使用MessageBox.Show()
函数。我如何使用JQuery/JavaScript确认对话框实现同样的事情?
从javascript获取确认,并点击
<asp:ImageButton runat="server" OnClientClick="return getConfirmation()"
ToolTip="Delete File" ID="lnkDelete" OnClick="DeleteFile"
CommandArgument='<%# Container.DataItemIndex %>'
ImageUrl="~/delete.png" Width="50px" Height="50px" />
JS代码
function getConfirmation(){
return window.confirm("Do you really want to delete the file?");
}
有一些不错的ui可用于显示确认框。查看jQuery模式对话框或bootstrap bootbox等
你不能那样做,因为你的处理程序是在服务器上执行的。相反,您必须使用JavaScript来决定是否删除该文件。例如:
<input type="button" onclick="deleteFile()" value="Delete File" title="Press to delete file" />
function deleteFile {
//show dialog with jquery or anything similar
//if yes is selected, then make the handler call using ajax. for example using jquery ajax:
$.ajax({ url: [handler url] + [query string], method: "post" });
}