In my web part I have an label, which I want to be localized:
<asp:Label ID="AppJSTNameLabel" runat="server" Text="<%$Resources:AppListWebPart,NoSelection%>" />
I have mapped Resources folder and created there files: AppListWebPart.resx and AppListWebPart.pl-PL.resx.
Both resource files contain NoSelection key with appropriate translations, but every time I deploy and test my web part, I'm getting:
Parser Error Message: The resource object with key 'NoSelection' was not found.
This drives me crazy. Any idea what I might be doing wrong?