我需要某人能够将一些文本放入页面然后将其发送到服务器,保存在数据库中,以及将此文本放入javascript变量的位置。
基本上是这样的:
Write("var myVar=\""+MyData+"\";");
转发此数据的最佳方法是什么?有没有什么可以处理像'
和"
以及新行这样的事情? base64是我唯一的选择吗?
我的服务器端框架/语言是ASP.Net/C#
答案 0 :(得分:0)
您应该使用WPL:
Write("var myVar=" + Encoder.JavaScriptEncode(MyData, true) + ";");
如果您不想引用该库,可以使用以下函数(改编自.Net源代码):
public static void QuoteString(this string value, StringBuilder b) {
if (String.IsNullOrEmpty(value))
return "";
var b = new StringBuilder();
int startIndex = 0;
int count = 0;
for (int i = 0; i < value.Length; i++) {
char c = value[i];
// Append the unhandled characters (that do not require special treament)
// to the string builder when special characters are detected.
if (c == '\r' || c == '\t' || c == '\"' || c == '\'' || c == '<' || c == '>' ||
c == '\\' || c == '\n' || c == '\b' || c == '\f' || c < ' ') {
if (b == null) {
b = new StringBuilder(value.Length + 5);
}
if (count > 0) {
b.Append(value, startIndex, count);
}
startIndex = i + 1;
count = 0;
}
switch (c) {
case '\r':
b.Append("\\r");
break;
case '\t':
b.Append("\\t");
break;
case '\"':
b.Append("\\\"");
break;
case '\\':
b.Append("\\\\");
break;
case '\n':
b.Append("\\n");
break;
case '\b':
b.Append("\\b");
break;
case '\f':
b.Append("\\f");
break;
case '\'':
case '>':
case '<':
AppendCharAsUnicode(b, c);
break;
default:
if (c < ' ') {
AppendCharAsUnicode(b, c);
} else {
count++;
}
break;
}
}
if (b == null) {
b.Append(value);
}
if (count > 0) {
b.Append(value, startIndex, count);
}
return b.ToString();
}