I have 15 web pages that has the same labels. But, in one case, I need to change all of their Text, in all pages. Other than writing them all by one, I want to make something general and public that I can use in all the pages. The ID’s of the labels are same. I don’t know how to do it with different web pages. Can you give me a hint? I don’t know if its called Utility or Dictionary. A friend of mine mentioned it a few mins ago but I don’t want to ask her again she already thinks I am dumb 🙁
They are ASP.NET pages with C# also I am using Devexpress.
I want to change only one web page at a time. But use the method for all web pages when they are shown (by the user). Not changing all the 15 at the same time.
If the informations shown on the
labelsare the same for every user, you could use the ASP.NET Cache.If not, you could use the Session.
But normally you would use a dbms for this purpose, for example SQL-Server.
Note: Do not use the Label’s ID as Keys for the Cache/Session/Database but the meaning. ID’s may change, apart from that it’s much more readable.