In html does the text inside the img tag's alt attribute require encoding/escaping?
Non encoded example:
<img src="myimg.png" alt="image description" />
Encoded example:
<img src="myimg.png" alt="image%20description" />
|
|
In html does the text inside the img tag's alt attribute require encoding/escaping? Non encoded example:
Encoded example:
|
|||
|
|
|
|
No, it does not need to be encoded like a URI. However, HTML characters must be encoded, like this...
|
||||||||||
|
|
|
No it does not. Encoding is for URLs as in http://en.wikipedia.org/wiki/Dream%20Theater, which the You will need to use entity-encoding to escape |
||
|
|
|
|
They do not require URL encoding, but they do require, as all XHTML attributes do, XHTML entity encoding. Incorrect:
Correct:
You would also need to encode double-quotes within the values, even though you don't have to do that in general text. Reference: |
||
|
|
|
|
You should use HTML encoding (i.e. " becomes "), not URL encoding. If you are using ASP.NET you can achieve this with Server.HtmlEncode or better yet use the HtmlAttributeEncode method in the AntiXSS Library on CodePlex. |
||
|
|