本文介绍了PDF报告中的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

什么是Pdf报表的Response.ContentType?

What is Response.ContentType For Pdf Reporting ?

MSWord :
Response.ContentType = "application/vnd.ms-word";

MS Excel :
Response.ContentType = "application/vnd.ms-excel";



帮帮我..



Help me..

推荐答案

Response.ContentType = "application/pdf"


response.ContentType is A string describing the content type.
For a full list of content types, see your browser documentation or the HTTP specification.



请参阅以下链接:
http://www.w3schools.com/asp/prop_contenttype.asp



See following link :
http://www.w3schools.com/asp/prop_contenttype.asp


这篇关于PDF报告中的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 02:48