In my web.config file, within the appsettings section, I have defined several keys such as companyname, companyaddress, etc. In my master page code behind file, in the Page_Load area I have associated the appsetting keys with some labels that I have setup in the master page to represent the various pieces of data.
In testing the pages of the site out that use the master page everything seems to be working just fine, the various bits of data are coming in as they should be set at the values from the web.config file.
The site(s) that I am doing this on are small in terms of the number of pages to the site and the user load viewing the site isn't that large either. What I am wondering is if the approach I have taken is all right performance wise or should I do something different?
Ira Richard Smith