sqlresourceprovider

Create custom expression for localized business content?

In short: I have an SQL implementation of the IResourceProvider. So: <asp:Literal id="id" text="<% $ Resources : Common, SomeResource %>" runat="server" /> works and I've created a helper so I can pass a string expression and get the same result: <%=Html.Resource("Common, SomeResource") %> I want to localize business content. Whic...

How to empty asp.net Resources Cache, provided by SQLResourceProvider

Hi all, I've just implemented a SQLResource provider in my MVC2 application. When I change something in the database by hand or by a webform, I want the ResourceProvider to drop all it's resources and fetch them again from the database. Does any one now how I can clear this ResourceCache that is managed by ASP.NET's own API? Many than...