Hi, I'm trying to get my pages to be valid XHTML 1.0 Transitional (or Strict).
A problem is that the ampersands in the script src values (e.g. for dojo script resources) are not encoded with & For example: <script type="text/javascript" src="/myApp/app?service=asset&path=%2Fdojo-0.4.3%2Fdojo.js"></script><script type="text/javascript" src="/myApp/app?service=asset&path=%2Fdojo-0.4.3%2Fdojo2.js"></script> is not valid. & should be replaced with & (I'm using http://validator.w3.org/ to validate.) Is there any way to fix this? /Malin