I have developed a small windows forms application in C#.
This application simply manipulates data and then export it to
html file.
But my problem is that some of the data that i’m exporting
includes html tags(,,). So this destroy the
layout of my exported file(.html), because of this tags.
Is there a way to solve this problem ? Or is there an open source
reporting tool that can help me solve this problem ?
Escape the tags using entities:
>instead of>,<instead of<and stuff like this.