Can anyone tell me how to modify HTML at runtime please?
A user has pasted a table from Word into a text editor control (FCKEditor)
The editor control automatically converts to HTML however I want to change the HTML before saving to database.
So, I want to make this
<table width="600" height=100>
into this
<table>
before saving string to the database.
Have tried using XmlDocument but LoadXml method doesn't like
Any ideas?