user26411
user26411

Reputation: 121

Text management in a web application

Hy, I developing ASP.Net for some years now and every time (very often) I code a new asp.net application I need to make sure that all the texts (labels, buttons, … ) I use in the Application must be managed and updated by an admin. Therefor I implemented a own simple component, which updates the data to a Strings table in the application database. This method works for me, but it is a bit painstaking each and every element to my DataUpdatingComponent. How are you handling this problem? Do you know any articles or blog entries handling this problem?

Upvotes: 0

Views: 312

Answers (3)

user26411
user26411

Reputation: 121

The best way I found so far on the wen is: blog.lavablast.com/post/2008/02/RESX-file-Web-Editor.aspx

Upvotes: 0

Dirk Brockhaus
Dirk Brockhaus

Reputation: 5062

As long as your texts belongs to resources you can create a custom resource provider or use already existing providers. Here is a thread where this is discussed before.

Upvotes: 2

rauts
rauts

Reputation: 1018

I think Satellite assemblies is an option u can think of. They are mainly used for managing resources for multiple regions (support globalization and localization for ASP.Net apps) but you can also use it for managing text resources.

Article:

http://www.codeguru.com/csharp/.net/net_general/tipstricks/article.php/c11367

Upvotes: 1

Related Questions