Link in cell doesn't work with multiple 'get' parameters

Writing something like this in an XML file works fine:

<cell>link^http://www.somesite.com/?param0=stuff</cell>";

However, this does not work:

<cell>link^http://www.somesite.com/?param0=stuff0&param1=stuff1</cell>";

With the second line, the page displays a LoadXML error. The grid is expecting a link because setColTypes has link in the respective column. Everything else on the page works fine, so this seems like a parsing error.

The problem is the & sign.
Try:

<cell><![CDATA[link^http://www.somesite.com/?param0=stuff0&param1=stuff1]]></cell>

Thanks! That worked like a charm. I assumed the problem was with the &, which is why I said it looked like a parsing error to me, but I didn’t know how to fix it.