SPHttpUtility.HtmlUrlAttributeEncode method (String)
將編碼的 URL 類型屬性,例如錨點標記的href屬性或影像標記的src屬性做為屬性值使用指定的字串。
Namespace: Microsoft.SharePoint.Utilities
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'宣告
Public Shared Function HtmlUrlAttributeEncode ( _
urlAttributeToEncode As String _
) As String
'用途
Dim urlAttributeToEncode As String
Dim returnValue As String
returnValue = SPHttpUtility.HtmlUrlAttributeEncode(urlAttributeToEncode)
public static string HtmlUrlAttributeEncode(
string urlAttributeToEncode
)
參數
urlAttributeToEncode
Type: System.String要編碼的字串。
傳回值
Type: System.String
編碼的字串。
備註
HtmlUrlAttributeEncode方法會檢查 URL 通訊協定,而且如果 URL 是相對路徑,或允許的通訊協定,將編碼的字串做為屬性值使用。它不會編碼 URL 的路徑或查詢字串。如果您正建置一個 URL,呼叫UrlPathEncode和UrlKeyValueEncode分別之前呼叫這個方法。