I have a string with HTML content, and I need it in XML format.
For example, I need that this convert:
<input id="Button1" type="button" value="button" /><input id="File1" type="file" />
to
<input id="Button1" type="button" value="button"></button><input id="File1" type="file"></input>
For example, I need that this convert:
<input id="Button1" type="button" value="button" /><input id="File1" type="file" />
to
<input id="Button1" type="button" value="button"></button><input id="File1" type="file"></input>