SPEncode.ScriptEncode 方法
在脚本中使用的字符串进行编码。
命名空间: Microsoft.SharePoint.Utilities
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Shared Function ScriptEncode ( _
str As String _
) As String
用法
Dim str As String
Dim returnValue As String
returnValue = SPEncode.ScriptEncode(str)
public static string ScriptEncode(
string str
)
参数
str
类型:System.String要编码的字符串。
返回值
类型:System.String
在脚本中使用已编码的字符串。
备注
ScriptEncode方法进行转义字符,否则将使用脚本冲突。下表中所示,此方法使字符替换。
原始 |
替换 |
---|---|
" |
\" |
+ |
\u002b |
\ |
\\ |
' |
\u0027 |
> |
\u003e |
< |
\u003c |