除了类似的问题,我无法找到解决问题的方法。我对JavaScript也不是很熟练。
我创建了一个ashx处理程序,用于从sharepoint站点下载文件。当数据库中存在文件时,一切正常。如果文件不存在,我应该弹出警报。
在ashx中我创建:
var r = context.Response;
var attachmentID = context.Request.QueryString[QueryKeyID];
int id = 0;
if (!String.IsNullOrEmpty(attachmentID))
{
id = Convert.ToInt32(attachmentID);
DocKey k = new DocKey() { id = id };
DocImage od = MyWebService.GetDocImage(k);
String newFile = "document.doc";
r.ContentType = GetMimeTypeByFileName(newFile);
r.AppendHeader("Content-Type", GetMimeTypeByFileName(newFile));
r.AppendHeader("content-disposition", "attachment; filename=" + newFile);
r.BufferOutput = false; //Stream the content to the client, no need to cache entire streams in memory...
r.BinaryWrite(od.image);
r.End();
}
else
{
r.Write("<script type='text/javascript'>alert('no doc');</script>");
r.End();
}
如果存在文件,则打开打开/保存对话框,单击任何选项后关闭选项卡。但是如果文件不存在,则会显示警报,并且空白选项卡不会消失。
单击gridView中的此链接后开始下载:
<asp:TemplateField HeaderText="">
<ItemTemplate>
<asp:HiddenField ID="hdnkey" runat="server" Value='<%# getKey(Eval("Key")) %>' />
<a href="/_LAYOUTS/UserHandler/AttachmentHandler.ashx?ID='<%# getKey(Eval("Key")) %>'" target="_blank">download</a>
</ItemTemplate>
</asp:TemplateField>
我想在警报后自动隐藏空白标签。
答案 0 :(得分:2)
试试这个:
r.Write("<script type='text/javascript'>alert('brak dokumentu w bazie');window.close();</script>");
它应该可以工作,除非它被浏览器上的某些安全设置阻止。
答案 1 :(得分:1)
你不能这样做,因为你正在打开一个网址,一个新请求。
即使你有以下代码
r.AppendHeader("Content-Type","text/html");
r.Write("<script type='text/javascript'>alert('no doc');</script>");
此代码将显示alert in new window
和现有窗口。
最好在网格中呈现链接时检测文档是否存在。如果不可用,请显示Not Found
文字
答案 2 :(得分:0)
context.Response.Write("<script type='text/javascript'>function closeCurrentTab(){var conf=confirm('Are you sure, you want to close this tab?');if(conf==true){close();}}</script>");
context.Response.Write("<script type='text/javascript'>closeCurrentTab();</script>");