如何从代码隐藏访问 web.config 的 httpRuntime 部分?
实际上,我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试类似的方法
,然后获取
section.MaxRequestLength
You can try something like
you can then get
section.MaxRequestLength
加载页面时,将最大文件大小设置为客户端变量,并在客户端事件中检查它,因为如果您请求服务器检查它,显然它会在验证之前出错。
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.