如何在ashx页面中读取配置文件值?

时间:2012-03-15 07:47:10

标签: asp.net visual-studio-2010 web-config ashx

我正在申请。在该应用程序中,我添加了一个ashx处理程序在这里,我想从配置文件中读取一些值,但我没有得到如何读取值。我正在使用代码

 public class MyHandler : IHttpHandler
    { 
        public bool IsReusable 
        { 
            get { return false; } 
        } 


        public void ProcessRequest(HttpContext context) 
        { 
           //Here i want to read config values.
        } 
    } 

1 个答案:

答案 0 :(得分:3)

ConfigurationManager类可以在任何地方使用。如果您尚未添加对System.Configuration.dll的引用,则必须添加引用。

读取配置值

public void ProcessRequest(HttpContext context) 
        { 
             var cfgValue = ConfigurationManager.AppSettings["cfgKey"];
        }