Reputation: 3
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
Reputation: 691625
In XML, double quotes aren't escaped using a backslash. They're escaped using "
.
Upvotes: 1