如何以编程方式设置(使用 GET SET 属性)“httpRuntime maxRequestLength”在 ASP.NET 中,使用 C# 作为隐藏代码
如何以编程方式设置(使用 GET SET 属性)在 ASP.NET 中使用 C# 作为代码隐藏的“httpRuntime maxRequestLength”
有没有办法通过 C# 在 web.config
中设置值?
How to programmatically set (using GET SET property) "httpRuntime maxRequestLength" in ASP.NET with C# as code behind
is there any way to set values in web.config
through C# ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以设置 web.config 的 maxRequestLength 代码中的属性如下:
我们做 这正是我们的内容 Rock RMS 内容管理系统。
You can set the web.config's maxRequestLength property in code like this:
We do this exact thing in our Rock RMS content management system.
是的,您可以在
web.config
中设置,只需在
部分下的web.config
中设置即可。在下面的示例中,我将最大长度
设置为2GB
请注意,
maxRequestLength
是在KB's
中设置的,并且最大可设置为 2GB (2079152 KB's
)。但默认文件大小限制为(4MB)
。Yes, you can set it in the
web.config
Just set it in the
web.config
under the<system.web>
section. In the below example I am setting themaximum length
to2GB
Please note that the
maxRequestLength
is set inKB's
and it can be set up to 2GB (2079152 KB's
). But default file size limit is(4MB)
.