vote up 1 vote down star

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 ?

flag

48% accept rate

3 Answers

vote up 4 vote down check

Make a static class

public static class MyConsts {
   public const string Prefix = "n-";
}

From anywhere in your project,

MyConsts.Prefix
link|flag
vote up 3 vote down

My initial thoughts are one of the following:

  1. Store it in a database table and create a mechanism for editing the values
  2. Create a static class and store them there
link|flag
1  
Additional benefit to #1: you can make configuration changes at runtime, assuming you cache the settings for a finite period of time and then expire them. – Jon Sagara Oct 22 at 5:03
vote up 1 vote down

Why not just make a static class and store the constants there. That way when you change it, everything will get the new values.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.