Anyway of having an & within an xml tag or any workaround, i need to store url's between the tags ?
Printable View
Anyway of having an & within an xml tag or any workaround, i need to store url's between the tags ?
I'm not sure but, did you try & instead?
This works
Shows..Code:<InventoryClasses>
value = "asd&"
</InventoryClasses>
<InventoryClasses>value = "asd&"</InventoryClasses>
yup works great!
Depends on the target platform but I usually avoid named entities in case they are not supported, for example I always use © for the copyright symbol as © is not supported by Safari.
& is I think pretty well supported though so you'd be safe enough with that.
Edit: It's & in case you want to use it instead.