如何以编程方式设置(使用 GET SET 属性)“httpRuntime maxRequestLength”在 ASP.NET 中,使用 C# 作为隐藏代码

发布于 2024-11-27 10:16:17 字数 136 浏览 1 评论 0原文

如何以编程方式设置(使用 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 技术交流群。

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

发布评论

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

评论(2

酷炫老祖宗 2024-12-04 10:16:17

您可以设置 web.config 的 maxRequestLength 代码中的属性如下:

Configuration webConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~" );
var section = (System.Web.Configuration.SystemWebSectionGroup)webConfig.GetSectionGroup("system.web");
section.HttpRuntime.MaxRequestLength = 10 * 1024; // 10 MB
webConfig.Save();

我们做 这正是我们的内容 Rock RMS 内容管理系统。

You can set the web.config's maxRequestLength property in code like this:

Configuration webConfig = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration( "~" );
var section = (System.Web.Configuration.SystemWebSectionGroup)webConfig.GetSectionGroup("system.web");
section.HttpRuntime.MaxRequestLength = 10 * 1024; // 10 MB
webConfig.Save();

We do this exact thing in our Rock RMS content management system.

昇り龍 2024-12-04 10:16:17

是的,您可以在 web.config 中设置,

只需在 部分下的 web.config 中设置即可。在下面的示例中,我将最大长度设置为2GB

<httpRuntime maxRequestLength="2097152" executionTimeout="600" />

请注意,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 the maximum length to 2GB

<httpRuntime maxRequestLength="2097152" executionTimeout="600" />

Please note that the maxRequestLength is set in KB's and it can be set up to 2GB (2079152 KB's). But default file size limit is (4MB).

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