I am writing something on a JSP page using bean write. But its escaping HTML. i.e suppose I have a bean named msgs with the value "<h1>Message</h1>" (without the quotes)
I get the literal string <h1>Message</h1> on my JSP Page. i.e it escapes HTML. which means the generated HTML is <h1>Message</> I dont want that to be done. I want Message with h1 tags. I hope I make sense. I am using struts 1.1 -- Puneet