vote up 0 vote down star

Hi guys,

How can I set the resource string in javascript?

I have a resource file called, for example,

myResourceFile.resx

in my code and using the literal control I can use:

lblName.Text = Resources.myResourceFile.ajaxRetrievingInformation;

<asp:Literal id="lit" runat="server" 
             Text="<%$ Resources:myResourceFile, ajaxRetrievingInformation%>" />

but if I try this in javascript, like:

<asp:Button ID="btnImportCompaniesAndEmployees" 
            runat="server" 
            CssClass="myButtonCssClass"
            OnClick="btnImportCompaniesAndEmployees_Click"
            OnClientClick="strLoadingText='<%$ Resources:myResourceFile, ajaxRetrievingInformation%>';return true;"
            ...
/>

or

<script type="text/javascript">
    var strLoadingText = '<%$ Resources:myResourceFile, ajaxRetrievingInformation%>';
</script>

I get errors...

Does anyone know how to manage this? Something like:

var strLoadingText = Resources.GetString(myResourceFile, ajaxRetrievingInformation);

Thanks

flag

71% accept rate

1 Answer

vote up 1 vote down check

You should be able to use:

<script type="text/javascript">
    var strLoadingText = "<%= Resources.myResourceFile.ajaxRetrievingInformation %>";
</script>
link|flag
how easy can that be! :) Thanks – balexandre Mar 10 at 16:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.