When uploading titles and descriptions and any other content via the WSI that includes special characters, I understand that you can add <![CDATA[]]> around the content in order to preserve it. My problem is that I have data/descriptions/titles that are already converted to HTML special characters and when uploaded via the WSI the result is a product with a title or description with HTML special characters all throughout (when TurnOffHtmlEditorInAdminSite is false) or title or description with literal HTML code all throughout (when TurnOffHtmlEditorInAdminSite is true). Is there a command within WSI that can convert the HTML special characters back to regular special characters that are suitable when using the <![CDATA[]]> notation?
Example:
Uploading the following works just fine.
C#/VB.NET Code:
<Description>
<![CDATA[
DESCRIPTION CONTENT
<br>
<br>
<table>
<tbody>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
</tbody>
</table>
]]>
</Description>
But Uploading the following, regardless of the TurnOffHtmlEditorInAdminSite AppConfig setting or use of <![CDATA[]]>, results in the HTML formatting being lost.
C#/VB.NET Code:
<Description>
DESCRIPTION CONTENT
<br>
<br>
<table>
<tbody>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
<tr>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
<td>TABLE CONTENT</td>
</tr>
</tbody>
</table></Description>
How can I take my information which is already in HTML special character format like the second example and upload it to properly display as HTML? Is there a line/command I can add to convert the HTML special characters back to regular special characters? Then I would just need the <![CDATA[]]> tags in there and it would work correctly I think.
I hope this question makes sense.