I use WebResources.resx to translate all the lines to the web interface. It works like:
<asp:Button ID="Button1" runat="server"
Text="<%$ Resources:WebResources, Button1Caption %>" />
But if I try to use onClientClick-Attribute, the line will not be resolved. What's wrong? Or how can I do it right?
<asp:Button ID="Button1" runat="server"
Text="<%$ Resources:WebResources, Button1Caption %>" onClientClick="return confirm('<%$ Resources:WebResources, ConfirmThisClick %>');" />
source
share