Michael Burke wrote:

I've got a jsp page that iterates through a list of web links, I can
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]


Sorry for the questions, I realized if I didn't enter a correct address (http://www...) it gets appended to my webapp address.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to