If I dont have content for something im working with, I usually will just do something like
e.Text = "";
where e is the field that im working with in my handler. When exporting this though, it creates a new line, both in the Word document and HTML versions. Is there a way to get it not to create a new line, but just ‘remove’ the text there? I have a table holding info about a user, and I would like it to look like:
Person Name
Person Name
Person Info
Other Text
Person Name
Other Text
--------------
rather than:
Person Name
Person Name
Person Info
Other Text
Person Name
Other Text
----------
Jon