SPEncode.WriteHtmlEncodePreserveSpacesWithQuote 方法
对指定的字符串进行编码,以便在浏览器中的文本形式显示中嵌入的 HTML 标记字符和字符串写入 HTTP 输出内容流,但保留在字符串中的多个空格和围绕带引号的字符串。
命名空间: Microsoft.SharePoint.Utilities
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Shared Sub WriteHtmlEncodePreserveSpacesWithQuote ( _
response As HttpResponse, _
str As String, _
quoteChar As Char _
)
用法
Dim response As HttpResponse
Dim str As String
Dim quoteChar As CharSPEncode.WriteHtmlEncodePreserveSpacesWithQuote(response, _
str, quoteChar)
public static void WriteHtmlEncodePreserveSpacesWithQuote(
HttpResponse response,
string str,
char quoteChar
)
参数
response
类型:System.Web.HttpResponse当前 HTTP 请求 System.HttpResponse 对象。
str
类型:System.String要编码的字符串。
quoteChar
类型:System.Char指定要用于引号字符 System.Char 对象。
备注
WriteHtmlEncodePreserveSpaces方法将转换将与对实体的 HTML 标记相混淆的字符。例如,"<"转换为"& lt;"。