I am creating my first .net website.
A lot of pages have code enhanced strings in the pages, like this:
string.Format("{0} Reviews", _store.Name);
Whilst this on it’s own isn’t unwieldly some pages have many string that are long, and makes the code page cumbersome.
I know that you can use resource files to store strings but that doesn’t take into account the programatical inserts into the string.
Has anyone got any techniques for handling this a little better?
UPDATE
Wow, thanks for the prompt any plentiful responses guys. I’ll take a look through them all to see which suits best.
Use the Application Settings or create Resourcefiles for the different cultures and languages you want to provide.