Michael Burke wrote:
I've got a jsp page that iterates through a list of web links, I canI thought this was an easy question, as I said in my first post when I iterate and print a list of hyperlinks the link gets appended to the link of my webapp (http://localhost:8080/linkapp) instead of just being an independant link. any suggestions would be appreciated.
t figure out how to use just the link without it being appended to http://localhost...
Here's the page in question:
<%@ taglib uri="/bean" prefix="bean" %>
<%@ taglib uri="/html" prefix="html" %>
<%@ taglib uri="/logic" prefix="logic" %>
<%@ taglib uri="/template" prefix="template" %>
<br/>
<html:errors/>
<br/>
<table cellpadding="2" width="80%">
<tr>
<td>
</td>
<td>
<b>Categories</b>
</td>
</tr>
<logic:iterate name="allLinksList"
id="links"
scope="request"
type="linkapp.entity.Links">
<tr>
<td>
<a href='<bean:write name="links" property="url"/>'>
<bean:write name="links" property="url"/></a>
</td>
</tr>
</logic:iterate>
</table>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]