在用户控件中使用 Javascript 访问资源文件

发布于 2024-09-10 00:39:53 字数 253 浏览 3 评论 0原文

我正在 Visual Studio 2005 中为 SharePoint 开发一个用户控件。我在我的 ascx 中核心使用 javascript。另外,我的项目中有一个 aspx 页面,它定义了用户控件的设置。

我想在 ascx 和 aspx 页面中使用 Javascript 访问 resx 文件中的所有文本。我试图在 12 hive 下放置一个通用的 resx 文件(其中包含 aspx 和 ascx 的文本),因为它可以从任何站点访问。关于如何实现这一目标有什么见解吗?

I am developing a user control for SharePoint in Visual Studio 2005. I make core usage of javascript in my ascx. Also, I have an aspx page in my project which defines the settings for the user control.

I want to access all the text from resx file using Javascript in the ascx and also in the aspx page. I am trying to place a common resx file (which contains the text of both the aspx and ascx) under the 12 hive since it could be accessible from any site. Any insights of how to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初见 2024-09-17 00:39:53

你可以尝试

<script type="text/javascript">
    var code = "<%$Resources:myresource,myScript%>";
    eval(code);
</script>

如果你只是想检索由javascript设置的本地化字符串,你最好使用

var localizedStr = "<SharePoint:EncodedLiteral runat='server' text='<%$Resources:wss,form_ok%>' EncodeMethod='EcmaScriptStringLiteralEncode'/>";

You may try

<script type="text/javascript">
    var code = "<%$Resources:myresource,myScript%>";
    eval(code);
</script>

If you just want to retrieve a localized string to be set by javascript, you may better use

var localizedStr = "<SharePoint:EncodedLiteral runat='server' text='<%$Resources:wss,form_ok%>' EncodeMethod='EcmaScriptStringLiteralEncode'/>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文