In a vb.net 2010 web form application the user loads 'template letters' to a web inerface, so that they can modify letters sent out to various customers to generate various late pay notifications. The user basically selects the 'template letter' they want
to generate for a specific customer, and hits the 'save' button.
The web interface has the tabs for 'preview', 'html', and 'design' as the bottom of the editor. These tabs are not part of any custom code, they must be part of a web interface that is inherited.
The values for the editor are stored in a sql server 2012 database in a field called 'strTemplate' and the value is actually html.
The problem is once the html value for 'strTemplate' is loaded for the user to edit, extra blank lines are loaded between different parts of the 'templates'. Basically extra <br></br> tags are generated.
When the user hits the save button, more <br></br> tags are generated between the var ...
Go to the complete details ...