如何从代码隐藏访问 web.config 的 httpRuntime 部分?

发布于 2024-10-15 20:49:10 字数 135 浏览 3 评论 0原文

实际上,我需要 web.config 中 httpRuntime 部分的 maxRequestLength 值来检查 postsfile 的大小是否更大。最好的阅读方式是什么?

先感谢您。

actually i need the maxRequestLength value of the httpRuntime section in web.config to check if a postedfile's size is greater. What's the best way to read it?

Thank you in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一花一树开 2024-10-22 20:49:10

您可以尝试类似的方法

HttpRuntimeSection section = ConfigurationManager.GetSection("system.web/httpRuntime") as HttpRuntimeSection;

,然后获取 section.MaxRequestLength

You can try something like

HttpRuntimeSection section = ConfigurationManager.GetSection("system.web/httpRuntime") as HttpRuntimeSection;

you can then get section.MaxRequestLength

风流物 2024-10-22 20:49:10

加载页面时,将最大文件大小设置为客户端变量,并在客户端事件中检查它,因为如果您请求服务器检查它,显然它会在验证之前出错。

On load of your page set the max file size to a client side variable and check it on a client event because if you request the server to check it obviously it will error out before it gets to your validation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文