asp文件怎么打开?(asp文件怎么打开?asp是什么?)

asp文件怎么打开,asp文件怎么打开??

一、查看PDF文件内容

protected void Page_Load(object sender, EventArgs e) { string url = Request.QueryString["url"]; Response.ContentType = "application/pdf"; Response.Clear(); Response.TransmitFile(url); Response.End(); }

二、下载文件到本地

protected void Page_Load(object sender, EventArgs e) { string url = Request.QueryString["url"]; string fileURL = HttpContext.Current.Server.MapPath("~") + url; FileInfo fileInfo = new FileInfo(fileURL); Response.Clear(); Response.AddHeader("content-disposition", "attachment;filename=" + Server.UrlEncode(fileInfo.Name.ToString())); Response.AddHeader("content-length", fileInfo.Length.ToString()); Response.ContentType = "application/octet-stream"; Response.ContentEncoding = System.Text.Encoding.Default; Response.WriteFile(fileURL); }

以上就是小编关于【asp文件怎么打开?asp是什么?】的分享,希望对你有用。

网友提问:

asp文件怎么打开,asp文件怎么打开?asp是什么??

win7如何用IE打开asp文件?

优质回答:

在任意一个asp文件上点击右键,选择“打开方式”。如图:

这时会提示“Windows无法打开此文件”。如图:

选中“从已安装程序列表中选择程序”,确定,这时就会打开“打开方式”选择窗口。如图:

在其中选中“Internet Explorer”,勾选底部的“始终使用选择的程序打开这种文件”,确定。

这样以后再双击asp文件,默认就用IE浏览器打开了。

与asp文件怎么打开相关的文章


为您推荐