When I have the following in my ascx web control:
<asp:Literal runat="server" Text="<%$Resources:core,Description%>" />
I get this error: The resource object with key 'Description' was not found.
But when I change the Literal to:
<asp:Literal runat="server" Text="<%$Resources:wss,viewlsts_desc%>" />
The control renders just fine.
What's so special about the wss resource file? How can I use core?
Update:
I still don't know why, but it appears that resource files in 14\CONFIG\Resources are available, while files in 14\Resources are not.