Reputation: 4213
What is the difference between html.AttributeEncode vs html.Encode?
Upvotes: 22
Views: 10804
Reputation: 630409
AttributeEncode converts only a handful of characters:
Encode does a full HtmlEncode, encoding any characters that aren't in Html.
Upvotes: 26