Exchange the &
for &
. Look at this the response of the following link:
https://stackoverflow.com/questions/6483807/the-reference-to-entity-foo-must-end-with-the-delimiter
"The ampersand &
is a special Character in HTML and XML. If you want to use it as a normal Character, you have to Encode it correctly. Write &
Instead of &
:
src="...9623&w=180&h=46&style=white&variant=text&loc=en_US"
&
denotes the start of an encoded Entity, such as <
for <
, or &
for &
. In your case the parser tries to interpret &w
as an Entity. But entities are Always terminated by an ;
, Thus if the ;
is Missing you get the error message."
He says the expression is not valid
– Jose Vieira Neto
that button is inside a datatable?
– Rafael