如何用WebConfigurationManager.OpenWebConfiguration方法打开当前web站点的web.config文件?
WebConfigurationManager.OpenWebConfiguration(null);打开的是machine.config文件。 --------------------编程问答-------------------- 这样就行了:
Configuration config = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~"); --------------------编程问答-------------------- WebConfigurationManager.OpenWebConfiguration("~/") --------------------编程问答-------------------- 真快 --------------------编程问答-------------------- 不行啊 说是不能解析 “/”
补充:.NET技术 , ASP.NET