Hi,
The lastName property is "Smith Jones", but only "Smith" is displayed.
When I view the browser source I see
so in html the quotes are missing as in value="Smith Jones"
When I save the html and change it to
"Smith Jones" is displayed properly.
Lines 26 and 27 contain is where the issue is.
I have also tried using
value='<
jsp:getProperty name="employee" property="lastName" />'
that I found when googling jsp:getproperty truncates bean data at first blank.
How do I get the quotes into the property?
Thanks,
Lou