asp.net 中 JavaScript 的转义变量

发布于 2025-01-07 07:49:03 字数 617 浏览 0 评论 0原文

我在 asp.net 中有以下代码:

string backToParentFunc = string.Format("backToParent('{0}', '{1}', '{2}', '{3}');",
                                              Server.UrlEncode(login),
                                              Server.UrlEncode(firstName),
                                              Server.UrlEncode(lastName),
                                              Server.UrlEncode(email);
ScriptManager.RegisterStartupScript(this, GetType(), "backToParent", backToParentFunc, true);

当然,当“lastName”变量包含 ['] 符号(O'Connell)时,它会停止工作。 如何在asp.net中正确转义字符串以使它们在JavaScript代码中正确显示?

I have the following code in asp.net:

string backToParentFunc = string.Format("backToParent('{0}', '{1}', '{2}', '{3}');",
                                              Server.UrlEncode(login),
                                              Server.UrlEncode(firstName),
                                              Server.UrlEncode(lastName),
                                              Server.UrlEncode(email);
ScriptManager.RegisterStartupScript(this, GetType(), "backToParent", backToParentFunc, true);

Of course it stops working when the "lastName" variable contains ['] symbol (O'Connell).
How to correctly escape strings in asp.net to make them appear correctly in JavaScript code?

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

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

发布评论

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

评论(2

拥有 2025-01-14 07:49:03

Consider using the JavaScriptEncode method from the Microsoft Anti-Cross Site Scripting Library.

九命猫 2025-01-14 07:49:03

您可以执行lastName.Replace("'", "\"")。

You can do a lastName.Replace("'", "\"").

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文