科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道基础软件如何读取MaxRequestLength的值

如何读取MaxRequestLength的值

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

在.net2.0中新增类HttpRuntimeSection :

作者:中国IT实验室 来源:中国IT实验室 2007年8月31日

关键字: MaxRequest 读取

  • 评论
  • 分享微博
  • 分享邮件
在.net2.0中新增类HttpRuntimeSection :

 static public double getMaxlength()
    
{
        System.Web.Configuration.HttpRuntimeSection hrs 
= 
new System.Web.Configuration.HttpRuntimeSection();
       
////return hrs.MaxRequestLength * 1024;
        return hrs.MaxRequestLength ;
    }
 

但上述方法读到的值却始终是4096,查阅MSDN,得知System.Web.Configuration(.net2.0中新增的类)的属性和方法除了AppSettings之外均只能读取"不可自定义的属性和功能",没有更好的办法,只好折衷:用.net1.1的方法解决:


 static public string getMaxlengthByAppSetting()
    
{
        
//先在Web.Config文件中增加一个key ****************************************//
        
//  <appSettings>
        
//  <add key="maxRequestLength" value="1550000"/>
        
//</appSettings>
        
//再来读取这个值,遗憾的是,这样只能写两遍,即
        
//<system.web>
        
//<httpRuntime maxRequestLength="1550000"  executionTimeout="3600"/>
        
//</system.web>
        
//这两个值必须保持一致。
        Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
        
return config.AppSettings.Settings["maxRequestLength"].Value;

       
/* *********************以下为修改某个AppSettings的Key值。
        ////Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
        ////if (config.AppSettings.Settings["MyAppKey"] == null)
        ////    config.AppSettings.Settings.Add("MyAppKey", "Hello!");
        ////else
        ////    config.AppSettings.Settings["MyAppKey"].Value = "Hello2!";
        ////config.Save(); 
        
*/

       
    }


不知有没有更好的办法??
查看本文来源
    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章