I have a user control, and I would like to use there the OOTB resource files for some standard text.
So I found a resource file WSS and there a resource to view.
In code:
<asp:literal runat="server" id="literal1" text="<%$Resources:wss,view_selector_view;%>" />
But it just shows this <%$Resources:wss,view_selector_view;%> and not the resource value.
Any idea what i'm doing wrong?
Update: Had error which said that key could not be found: solved it by removing ";" as it was not needed.