HttpUtility.HtmlAttributeEncode Method (String)

Minimally converts a string to an HTML-encoded string.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
static String^ HtmlAttributeEncode (
	String^ s
)
public static String HtmlAttributeEncode (
	String s
)
public static function HtmlAttributeEncode (
	s : String
) : String
Not applicable.

Parameters

s

The string to encode.

Return Value

An encoded string.

The HtmlAttributeEncode method converts only quotation marks ("), ampersands (&), and left angle brackets (<) to equivalent character entities. It is considerably faster than the HtmlEncode method.

The string result from the HtmlAttributeEncode method should be used only for double-quoted attributes. Security issues might arise when using the HtmlAttributeEncode method with single-quoted attributes.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0, 1.1, 1.0

Community Additions

ADD
Show: