Hi, on our webpage, we display text taken from the DB, that includes html character codes like <br/>.
Obviously, this display as <br/> on the page, but we'd like to actually see the newline. Its probably stored like this in the DB because we did an escape on the text when the user entered it.
Does anyone know of a way to 'unescape' or convert back to the original html tags? Or is string replace the best bet?
Thanks!