Re: Why does my browser not interpret the escaped HTML tags?
Robert Bowen wrote:[color=blue]
> Now, as to my problem. I don't actually WANT to use these characters
> but for some reason when I save certain info in my Oracle database
> (saved as a BLOB), when it is displayed on my jsp page, it is spit out
> that way. Looking at the database it SEEMS as if it's being saved
> "normally", as "<" and ">", and not the HTML symbols. But when it is
> displayed, that's what comes out ...[/color]
I haven't seen your page, but my best guess is that the data is stored
correctly in the database, and that you're using a pre-written JSP
script which automatically adds the entities (that's what < and >
are called).
Robert Bowen wrote:[color=blue]
> Now, as to my problem. I don't actually WANT to use these characters
> but for some reason when I save certain info in my Oracle database
> (saved as a BLOB), when it is displayed on my jsp page, it is spit out
> that way. Looking at the database it SEEMS as if it's being saved
> "normally", as "<" and ">", and not the HTML symbols. But when it is
> displayed, that's what comes out ...[/color]
I haven't seen your page, but my best guess is that the data is stored
correctly in the database, and that you're using a pre-written JSP
script which automatically adds the entities (that's what < and >
are called).
Comment