使用此示例应用程序的Pdf文件的大小 [英] Size of Pdf File using this sample application

查看:82
本文介绍了使用此示例应用程序的Pdf文件的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在升级14MB大小的PDF文件,它不会让人失望。





请发送我可以保持默认大小的pdf 。

i am uploding 14MB size of PDF file, its not uploding.


pls send where i can keep default size of pdf.

推荐答案

查看你的web.config文件:

Look in your web.config file:
<configuration>
  <system.web>
    <httpRuntime maxRequestLength="16384" />
  </system.web>
</configuration>



该值以KB为单位,默认为4096或4MB。上面的值将为您提供16MB。


The value is in KB, and defaults to 4096 or 4MB. The value above will give you 16MB.


对于IIS 6.0,您可能还需要增加最大超时。

For IIS 6.0, you may need to increase the maximum timeout as well.
<configuration>
  <system.web>
    <httpRuntime maxRequestLength="16384" executionTimeout="3600" />
  </system.web>
</configuration>


这篇关于使用此示例应用程序的Pdf文件的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆