Trimack
Trimack

Reputation: 4213

What is the difference between html.AttributeEncode vs html.Encode?

What is the difference between html.AttributeEncode vs html.Encode?

Upvotes: 22

Views: 10804

Answers (1)

Nick Craver
Nick Craver

Reputation: 630409

AttributeEncode converts only a handful of characters:

  • "
  • &
  • <
  • \

Encode does a full HtmlEncode, encoding any characters that aren't in Html.

Upvotes: 26

Related Questions