zoukankan
html css js c++ java
流输出
在ASP.net中输出其他格式的文件
Response.ContentType
=
"
application/octet-stream
"
;
Response.Charset
=
"
GB2312
"
;
//
Response.AddHeader("Content-Disposition", "inline; filename="+reader["BName"].ToString() +reader["exeName"].ToString() );
Response.AddHeader(
"
Content-Disposition
"
,
"
attachment;filename=
"
+
HttpUtility.UrlEncode( reader[
"
Name
"
].ToString() ,System.Text.Encoding.UTF8) );
Response.BinaryWrite((Byte[])reader[
"
content
"
]);
Response.End();
查看全文
相关阅读:
Pytest权威教程21-API参考-02-标记(Marks)
GitLab获取人员参与项目-贡献项目列表
通过Confulence API统计用户文档贡献量
Git项目代码统计-Python3版gitstats
Pytest从测试类外为测试用例动态注入数据
Python操作Jira
Selenium操作Chrome模拟手机浏览器
剑指offer 构建乘积数组
栈与堆 && char*, char[], char**, char*[], char[][]详解
vector 容器知识点汇总
原文地址:https://www.cnblogs.com/FlyFire/p/354183.html
最新文章
可交付的成果
项目负责人和项目经理的区别
项目章程
项目立项和项目启动的区别
什么是项目和项目管理?
JS将科学计数法转换成数据值的方式
z-index属性解决样式被遮挡的问题
matplotlib 入门之Usage Guide
matplotlib 入门之Image tutorial
matplotlib 入门之The Lifecycle of a plot
热门文章
Missing Data in Kernel PCA
Probabilistic Principal Component Analysis
不等式
Recovering Low-Rank Matrices From Few Coefficients In Any Basis
Nonlinear Component Analysis as a Kernel Eigenvalue Problem
Robust PCA via Outlier Pursuit
Matrix Completion with Noise
Pytest权威教程21-API参考-05-对象(Objects)
Pytest权威教程21-API参考-04-钩子(Hooks)
Pytest权威教程21-API参考-03-夹具(Fixtures)
Copyright © 2011-2022 走看看