WebUtility.HtmlEncode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將字串轉換成 HTML 編碼字串。
多載
HtmlEncode(String) |
將字串轉換成 HTML 編碼字串。 |
HtmlEncode(String, TextWriter) |
將字串轉換成 HTML 編碼字串,並以 TextWriter 輸出資料流的形式傳回輸出。 |
HtmlEncode(String)
將字串轉換成 HTML 編碼字串。
public:
static System::String ^ HtmlEncode(System::String ^ value);
public static string HtmlEncode (string value);
public static string? HtmlEncode (string? value);
static member HtmlEncode : string -> string
Public Shared Function HtmlEncode (value As String) As String
參數
- value
- String
要編碼的字串。
傳回
編碼字串。
備註
如果在 HTTP 數據流中傳遞空白和標點符號之類的字元,在接收端可能會誤譯這些字元。 HTML 編碼會將 HTML 中不允許的字元轉換成字元實體對等專案;HTML 譯碼會反轉編碼。 例如,當內嵌在文字區塊中時,字元 <
和 >
會編碼為 <
和 >
進行 HTTP 傳輸。
value
如果 參數為 null
,則傳回的編碼字串為 null
。
value
如果參數是空字串,則傳回的編碼字串是空字串。
另請參閱
適用於
HtmlEncode(String, TextWriter)
將字串轉換成 HTML 編碼字串,並以 TextWriter 輸出資料流的形式傳回輸出。
public:
static void HtmlEncode(System::String ^ value, System::IO::TextWriter ^ output);
public static void HtmlEncode (string? value, System.IO.TextWriter output);
public static void HtmlEncode (string value, System.IO.TextWriter output);
static member HtmlEncode : string * System.IO.TextWriter -> unit
Public Shared Sub HtmlEncode (value As String, output As TextWriter)
參數
- value
- String
要編碼的字串。
- output
- TextWriter
TextWriter 輸出資料流。
例外狀況
如果 output
參數不是 null
,value
不能為 null
。
備註
如果在 HTTP 數據流中傳遞空白和標點符號之類的字元,在接收端可能會誤譯這些字元。 HTML 編碼會將 HTML 中不允許的字元轉換成字元實體對等專案;HTML 譯碼會反轉編碼。 例如,當內嵌在文字區塊中時,字元 <
和 >
會編碼為 <
和 >
進行 HTTP 傳輸。
另請參閱
- HtmlDecode(String, TextWriter)
- HtmlDecode(String, TextWriter)
- Uri
- 如何:將 HTML 編碼套用至字串,以防止 Web 應用程式中的腳本惡意探索