Reputation: 23216
The following jsp snippet :
<% while(set.next()) { %>
<li>
<%-- statement 3--%> <a class="thumb" href="/home/non-admin/project uploads/project users/" <% + %> <%= set.getString("UserEmail") %> <% + %> "/" <% + %> <%= set.getString("NameOfThePhoto") %> > <img src="images/portfolio_two/1_thumb.jpg" alt="one"> </a>
<div class="caption">
<div class="image-title portfolio_two">"Pier by the sea, Fowey, Cornwall, UK"</div>
</div>
</li>
<% } %>
gives an error in the statement 3 . The IDE says not a statement
and """""" is not serializable in xml 1.0
. what is this error and why does it occur ?
In the statement 3 i am adding the vales fetched from the database to href.
Upvotes: 1
Views: 61
Reputation: 4474
I gave it a shot. But, I still don't like the spaces in "project uploads" and "project users".
href="/home/non-admin/project uploads/project users/<%=set.getString("UserEmail")%>/<%=set.getString("NameOfThePhoto")%>"
Upvotes: 2