ASP.NET 下载文件并继续执行JS解决方法
需求说明:当用户点击按钮时使当前按钮为不可用,并打开新页面,关闭新页面时,按钮变为可用。并且如果不关闭新页面,当前按钮过10秒钟自动变为可用。
包含3个页面:
一、按钮页
前台代码:当刷新后采用js进行disable后,点击的时候也可以用JS使其为disable,让整个过程都disable。(如果采用的是后台button.Enable=false,则不行,因为服务器端状态始终为false,导致按钮只能用一次。)
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default2.aspx.vb" Inherits="Default2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<script type="text/javascript" language="javascript"> function disableButton(button) {
var btn = document.getElementById(button);
setTimeout(function () {disable_in(btn); },);
}
function disable_in(button)
{
button.disabled=false;
}
function Enablebutton(buttonID) {
var button = document.getElementById(buttonID);
button.disabled = false;
}
function NotEnablebutton(buttonID) {
var button = document.getElementById(buttonID);
button.disabled = true;
} function disable_out(button) {
button.disabled = true;
} // function disableButton_Out(button) {
// setTimeout(function () { disable_out(button); }, 50);
// } </script>
<form id="form1" runat="server">
<div>
<asp:Button ID="Button1" runat="server" Text="Button" UseSubmitBehavior="false" OnClientClick="disable_out(this);"/>
<asp:Button ID="Button2" runat="server" Text="Button2" UseSubmitBehavior="false" OnClientClick="disable_out(this);"/>
</div>
</form>
</body>
</html>
后台代码:
这里用服务器端 Button1.Enabled = False代码, 当用JS还原为可用时,服务器端状态不会改变,因此多个按钮点击时会出现bug(点击第二个按钮时,第一个按钮会一起变为不可用)。所以这里将用js设置为不可用状态。
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Session("ImagePath") = "\\129.223.229.102\Dis_project\Temp\test.pdf"
'Session("ImagePath") = "\\129.223.229.102\Dis_project\Temp\test1.zip"
Session("CurrentButtonID") = Button1.ClientID
Session("IsPDF") = True
System.Threading.Thread.Sleep()
ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript1", String.Format("<script>disableButton('" & Button1.ClientID & "')</script>"))
ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript2", String.Format("<script>NotEnablebutton('" & Button1.ClientID & "');</script>"))
ClientScript.RegisterStartupScript(ClientScript.GetType(), "myscript", String.Format("<script>window.open('ShowPDF.aspx')</script>"))
'Button1.Attributes.Add("OnClientClick", String.Format("javascript:disableButton_Out(this);"))
'Button1.Enabled = False End Sub
二、下载(显示)页面
前台代码:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="ShowPDF.aspx.vb" Inherits="ShowPDF" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>ShowPDF</title>
</head>
<body>
<form id="form1" runat="server"> <%--<script type="text/javascript" language="javascript">
window.onbeforeunload = closingCode;
function closingCode() {
opener.Enablebutton();
} </script>--%>
<%--<% GetPDF1()%>--%>
<iframe src="Default3.aspx" width="100%" height="100%">
</iframe>
</form>
</body>
</html>
后台代码:
Imports System.Net
Partial Class ShowPDF
Inherits System.Web.UI.Page Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim js As String = ""
Dim buttonid As String = ""
If Not Session("ImagePath") Is Nothing AndAlso Not Session("CurrentButtonID") Is Nothing Then
buttonid = Session("CurrentButtonID").ToString()
js = "<script>window.onbeforeunload = closingCode;function closingCode() {opener.Enablebutton('" + buttonid + "');}</script>"
'js = String.Format("<script>window.onbeforeunload = closingCode;function closingCode() {opener.Enablebutton('{0}');}</script>", "Button1")
Response.Write(js) 'write the enable parent button'js
End If End Sub
Public Sub ShowPDFfile()
Dim str As String = ""
If Not Session("ImagePath") Is Nothing Then
str = String.Format("<object data=""\\129.223.229.102\Dis_project\Temp\test.pdf"" type=""application/pdf"" width=""100%"" height=""100%""><p>It appears you don't have a PDF plugin for this browser.No biggie... you can <a href=""em.pdf"">click here todownload the PDF file.</a></p></object>")
End If
Response.Write(str)
End Sub Public Sub GetPDF(ByVal path As String)
'Dim path As String = Server.MapPath(Spath)
Dim client As New WebClient()
Dim buffer As [Byte]() = client.DownloadData(path) If buffer IsNot Nothing Then
Response.ContentType = "application/pdf"
Response.AddHeader("content-length", buffer.Length.ToString())
Response.BinaryWrite(buffer)
Response.Flush()
Response.End()
End If
End Sub
Protected Sub DownloadFile(ByVal fileName As String)
'20110905 Test Export with SSL using IE 7
Dim s_path As String = fileName 'HttpContext.Current.Server.MapPath("~/") +
Dim file As System.IO.FileInfo = New System.IO.FileInfo(s_path) Response.ClearHeaders() HttpContext.Current.Response.ContentType = "application/ms-download"
HttpContext.Current.Response.Charset = "utf-8"
Response.AddHeader("Content-Disposition", "inline; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8)) 'inline
HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString())
Response.AddHeader("Pragma", "public")
Response.AddHeader("Cache-Control", "max-age=0")
Response.Flush()
HttpContext.Current.Response.WriteFile(file.FullName)
HttpContext.Current.Response.Flush()
'HttpContext.Current.Response.Clear()
HttpContext.Current.Response.End() End Sub
Public Sub GetPDF1()
Dim fileName As String = "\\129.223.229.102\Dis_project\Temp\test1.pdf"
Response.ContentType = "application/pdf"
Response.Clear()
Response.TransmitFile(fileName)
Response.End()
End Sub
End Class
三、框架中的真正的下载(显示页面),显示在框架中
前台代码:
后台代码:
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim fileName As String = ""
If Not IsPostBack Then
If Not Session("ImagePath") Is Nothing AndAlso Not Session("CurrentButtonID") Is Nothing Then
fileName = Session("ImagePath").ToString()
GetPDF1(fileName)
End If End If End Sub
Public Sub GetPDF1(ByVal fileName As String)
'Dim fileName As String = "\\129.223.229.102\Dis_project\Temp\test1.pdf" If Session("IsPDF") = False Then
Response.ContentType = "application/zip"
Response.AddHeader("Content-Disposition", "attachment; filename=" + HttpUtility.UrlEncode(fileName, System.Text.Encoding.UTF8))
Else
Response.ContentType = "application/pdf"
End If
Response.Clear()
Response.TransmitFile(fileName)
Response.End()
End Sub
ASP.NET 下载文件并继续执行JS解决方法的更多相关文章
- Asp.Net 下载文件的几种方式
asp.net下载文件几种方式 protected void Button1_Click(object sender, EventArgs e) { /* 微软为Response对象提供了一个新的方法 ...
- 自动化测试中执行JS脚本方法封装
执行JS脚本方法封装: class JavaScript(Base): def execute_javascript(self, js): """执行 JavaScrip ...
- XCode编译文件过多导致内存吃紧解决方法
XCode编译文件过多导致内存吃紧解决方法 /Users/~~/Library/Developer/Xcode/DerivedData 1) 然后 找到编译文件 删除 就好了哦 快去试试看吧
- PowerShell因为在此系统中禁止执行脚本解决方法
PowerShell因为在此系统中禁止执行脚本解决方法 在Powershell直接脚本时会出现: 无法加载文件 ******.ps1,因为在此系统中禁止执行脚本.有关详细信息,请参阅 " ...
- (转)调用System.gc没有立即执行的解决方法
调用System.gc没有立即执行的解决方法 查看源码 当我们调用System.gc()的时候,其实并不会马上进行垃圾回收,甚至不一定会执行垃圾回收,查看系统源码可以看到 /** * Indicate ...
- SQL Server作业没有执行的解决方法
SQL Server作业没有执行的解决方法 确保SQL Agent服务启动,并设置为自动启动,否则你的作业不会被执行 设置方法: 我的电脑--控制面板--管理工具--服务--右键 SQLSE ...
- WebBrowser 的 DocumentCompleted事件不执行的解决方法
原文:WebBrowser 的 DocumentCompleted事件不执行的解决方法 WebBrowser 的 DocumentCompleted事件不执行的解决方法: 使用WebBrowser的P ...
- asp.net下载文件几种方式
测试时我以字符流的形式下载文件,可行,前几个仅作参考 protected void Button1_Click(object sender, EventArgs e) { /* 微软为Respo ...
- Asp.net下载文件
网站上的文件是临时文件, 浏览器下载完成, 网站需要将其删除. 下面的写法, 文件读写后没关闭, 经常删除失败. /// <summary> /// 下载服务器文件,参数一物理文件路径(含 ...
随机推荐
- isNaN() 确认是否是数字
isNaN(x): 当变量 x 不是数字,返回 true: 当变量 x 是其他值,(比如,1,2,3),返回false.
- PHP跳转页面的几种实现方法详解
•PHP页面跳转一.header()函数header()函数是PHP中进行页面跳转的一种十分简单的方法.header()函数的主要功能是将HTTP协议标头(header)输出到浏览器.header() ...
- 清除浮动(clearfix hack)
eg:
- 通过url地址传递base64加密参数遇到的问题整理
1. base64的加密解密方法在C#的类库中就有 QueryString中的加号变成了空格问题 Server.UrlEncode(username),获取到的编码又将等于号变成了%3d; 到底改怎么 ...
- PYTHONPATH 可以跨版本 方便使用 (本文为windows方法)转~
PYTHONPATH是Python搜索路径,默认我们import的模块都会从PYTHONPATH里面寻找. 使用下面的代码可以打印PYTHONPATH: print(os.sys.path) 我的某个 ...
- iOS开发——高级篇——传感器(加速计、摇一摇、计步器)
一.传感器 1.什么是传感器传感器是一种感应\检测周围环境的一种装置, 目前已经广泛应用于智能手机上 传感器的作用用于感应\检测设备周边的信息不同类型的传感器, 检测的信息也不一样 iPhone中的下 ...
- BZOJ3196——二逼平衡树
1.题目大意:给你一个序列,有5种操作,都有什么呢... 1> 区间第k小 这个直接用二分+树套树做 2> 区间小于k的有多少 这个直接用树套树做 3> 单点修改 这个直接用树套树做 ...
- 手把手教你crontab排障
导读 crond是linux下用来周期性的执行某种任务或等待处理某些事件的一个守护进程,与windows下的计划任务类似,当安装完成操作系统后,默认会安装此服务工具,并且会自动启动crond进程,cr ...
- 内网安全工具之hscan扫描
工具下载地址:hscan1.2.zip 界面简单,看配置: 这里我们主要需要配置的是模块和参数 模块,按照默认配置就行,取消 check HTTP vulnerability(漏洞检测) 会更快一点. ...
- Sqli-LABS通关笔录-18-审计SQL注入2-HTTP头注入
在此关卡我学习到了 1.只要跟数据库交互的多观察几遍.特别是对于http头这种类型的注入方式. 2. <?php //including the Mysql connect parameter ...