Valid resource keys in ASP.NET .resx resource files - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T14:21:55Z http://stackoverflow.com/feeds/question/978295 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/978295/valid-resource-keys-in-asp-net-resx-resource-files 1 Valid resource keys in ASP.NET .resx resource files frankadelic 2009-06-10T21:41:01Z 2009-06-11T02:10:26Z <p>I am using a CMS tool to generate .resx resource files.</p> <p>Is there any danger in creating resource names with spaces or punctuation characters in them?</p> <p>If I use this syntax to get resources, it works fine:</p> <pre><code>GetGlobalResourceObject("myresources", "audio,visual"); </code></pre> <p>However, this causes an error with declarative resource syntax, e.g.:</p> <pre><code>&lt;asp:Literal ID="litLastName" runat="server" Text="&lt;%$ Resources: GlobalResources,audio,visual %&gt;"&gt;&lt;/asp:Literal&gt; </code></pre> <p>Also, when I edit .resx files in Visual Studio, it gives me warnings if my resource keys contain any characters besides alphanumerics and underscores. It says "The resource name " is not a valid identifier".</p> <p>Am I breaking a .NET rule here?</p> http://stackoverflow.com/questions/978295/valid-resource-keys-in-asp-net-resx-resource-files/978312#978312 2 Answer by Anthony Potts for Valid resource keys in ASP.NET .resx resource files Anthony Potts 2009-06-10T21:44:36Z 2009-06-11T02:10:26Z <p>The general guideline for resource keys are the same as the rules for a variable that you define.</p> <p>Here is a comment in the asp.net forums stating that the use of a period is not allowed:</p> <p><a href="http://forums.asp.net/t/967741.aspx" rel="nofollow">http://forums.asp.net/t/967741.aspx</a></p> <p>Here is a question on SO about naming conventions for resx file key naming conventions:</p> <p><a href="http://stackoverflow.com/questions/896342/resource-resx-file-key-naming-conventions">http://stackoverflow.com/questions/896342/resource-resx-file-key-naming-conventions</a></p> <p>Also, if you think about how they are used in the application having a key with a space or something odd is going to really hose the code as well. This is especially bad in the case of using a resource file for something like a telerik control as seen in this quick tutorial for a control:</p> <p><a href="http://www.telerik.com/help/aspnet-ajax/advancedmultilanguagelocal.html" rel="nofollow">http://www.telerik.com/help/aspnet-ajax/advancedmultilanguagelocal.html</a></p> <p>If now you were adding a name there like </p> <pre><code>I like to put spaces in resource keys.ChartTitle.TextBlock.Text </code></pre> <p>Well, everything will barf all over the place because spaces mean something.</p> <p>(It is also obvious in the above link why the period is no longer valid)</p> <p>I suppose I could also punt and say, it seems that someone at Microsoft certainly thinks that's an error and that's why visual studio is giving you that error. Although, it is certainly good to question authority and the power of the man over us.</p> <p>In the long run, there's probably not a reason why you would NEED to do something so unconventional.</p>