I have MasterPage.master and I want to set the title using resources files so I can have an english title as well as a french title depending on the context.
Code:
<head runat="server">
<title>My title</title>
</head>
We can't put an asp control in the head, this doesn't work:
Code:
<head runat="server">
<title><asp:Literal Text='<%$ Resources:Title %>' /></title>
</head>
Why is that? Is there another solution we missed?
Thank you!