如何在javascript中设置资源字符串?

例如,我有一个资源文件,

myResourceFile.resx

在我的代码中,并使用文字控件,我可以使用:
lblName.Text = Resources.myResourceFile.ajaxRetrievingInformation;

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

但是,如果我在javascript中尝试此操作,例如:
<asp:Button ID="btnImportCompaniesAndEmployees"
            runat="server"
            CssClass="myButtonCssClass"
            OnClick="btnImportCompaniesAndEmployees_Click"
            OnClientClick="strLoadingText='<%$ Resources:myResourceFile, ajaxRetrievingInformation%>';return true;"
            ...
/>

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

我遇到错误...

有人知道如何管理吗?
类似于:
var strLoadingText = Resources.GetString(myResourceFile, ajaxRetrievingInformation);

谢谢

最佳答案

您应该可以使用:

<script type="text/javascript">
    var strLoadingText = "<%= Resources.myResourceFile.ajaxRetrievingInformation %>";
</script>

10-04 20:35