在 ASP.NET 中存储常量的单个文件/类
我有一个 ASP.NET Web 应用程序,有 100 多个页面。每个页面都使用一些通用值(例如:当前美元汇率)。这可以随时更改。现在我想在一个文件中维护这个值,这样我就可以随时只更改她以使其反映在整个项目中。我不想将其存储在 Web 配置中。我想将其存储在其他地方
有什么想法吗?
I have a ASP.NET web application which has more than 100 pages. Each page is using some common values ( ex : current USDoller rate) .This can be changed at any time. Now I want to maintain this value in a single file so that i can change only her at any time to get it reflected throughtout the project.I dont want to store it in web config. I want to store it in some other place
Any thoughts ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个像这样的静态类:
从项目中的任何位置使用:(
注意:
const
是隐式静态的)Make a static class like this:
From anywhere in your project use:
(Note:
const
is implicitly static)我最初的想法是以下之一:
My initial thoughts are one of the following:
为什么不直接创建一个静态类并将常量存储在那里。这样当你改变它时,一切都会得到新的值。
Why not just make a static class and store the constants there. That way when you change it, everything will get the new values.