Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
处理程序页面 (.ashx) 能否获取在 web.config 的应用程序设置中设置的键值?对于 asp.net
回答:是的,详情见评论
是的,您可以使用ConfigurationManager该类获取设置。
ConfigurationManager
var value = ConfigurationManager.AppSettings["Key"]
更多信息