I created an ASP.NET MVC application and added 2 resource file for about.aspx page in the project. It looks like this:
Then I modified the About.aspx page as following:
<asp:Content ID="aboutContent" ContentPlaceHolderID="MainContent" runat="server">
<h2><%= GetLocalResourceObject ("About")%></h2>
<p>
<%= GetLocalResourceObject ("PutContentHere")%>
</p>
</asp:Content>
I tried to run the about page after changing the firefox locale to hi-IN but it still shows the default text (in English). Please can you spot the problem?
