Ajay
Ajay

Reputation: 3

html in jsp tag

Html in jsp tag

 <jsp:setProperty name="mail" property="message" value="<html> <body><h1>Welcome</h1> <br/> <table cellpadding=\"6\" cellspacing=\"0\" border=\"1\">
                   <tr><td style=\"text-align: left;font-weight: bold\">User Name:</td><td> +email+</td></tr> <tr><td style=\"text-align: left;font-weight: bold\">Password:</td><td>+pass+</td></tr>
                  </table></body></html>"/>

not displaying in tabular format but showing the whole html tag

Upvotes: 0

Views: 132

Answers (1)

JB Nizet
JB Nizet

Reputation: 691625

In XML, double quotes aren't escaped using a backslash. They're escaped using &quot;.

Upvotes: 1

Related Questions