将数据添加到href时出错

时间:2012-05-04 03:52:23

标签: java html jsp

以下jsp片段:

<% 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">&quot;Pier by the sea, Fowey, Cornwall, UK&quot;</div>
          </div>
</li>
<% } %>

在语句3中给出错误。 IDE说not a statement"""""" is not serializable in xml 1.0。这是什么错误,为什么会发生? 在语句3中,我将从数据库中提取的值添加到href。

1 个答案:

答案 0 :(得分:2)

我试了一下。但是,我仍然不喜欢“项目上传”和“项目用户”中的空格。

href="/home/non-admin/project uploads/project users/<%=set.getString("UserEmail")%>/<%=set.getString("NameOfThePhoto")%>"