I am using the (.NET 3.5 SP1) System.Xml.Linq namespace to populate an html template document with div tags of data (and then save it to disk). Sometimes the div tags are e
I'm not sure why you'd end up with an empty DIV (seems a bit pointless!) But:
divTag.SetValue(string.Empty);
Should do it.