I was just given a project that needs to be localized.
I just came across meta: resourcekey and how it was used in combination with local resource files.
My question is: should I do it this way?
Consider this example immediately after MSDN:
<asp:Button ID="Button1" runat="server" Text="DefaultText" meta:resourcekey="Button1" />
If I read this for the first time (what I am), I would say: "Why point Button1 twice?"
If <@ Page @> already has Culture installed on auto and there are local resource files, go and find each controlling local resource, if any, without the need for this double mention for EVERY single control on the page. <sh> I looked at the page that we already have, and it looks like a mess if you ask me.
Did I miss something?
Or is this method out of date, and is there a better way to do this? All input (+/-) is evaluated. Thanks!
source share