asp.net 中 JavaScript 的转义变量
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
考虑使用 Microsoft 反跨站脚本库中的
JavaScriptEncode
方法。Consider using the
JavaScriptEncode
method from the Microsoft Anti-Cross Site Scripting Library.您可以执行lastName.Replace("'", "\"")。
You can do a lastName.Replace("'", "\"").