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

有什么办法可以通过C#在web.config中设置值?

最佳答案

您可以使用以下代码设置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();

我们在this exact thing内容管理系统中执行Rock RMS

10-07 20:09