jstl tag constructing urls
Hi All,
using Dreamweaver with templates and library items for jsp pages.
For some reason my links are pointing to pages that don't exist!!!!
When I put this library item into my pages, the link keeps pointing to search.jsp.
If you look below, I am pointing to announceDetail.jsp.
Please help. Im tired of fooling around with my other projects!
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<div id="bloglatest">
<sql:query var="rs" dataSource="jdbc/db"> select announceid, startdate, title, content from announce</sql:query>
<c:forEach var="row" items="${rs.rows }">
<h4>${row.startdate }</h4>
<a href="announceDetail.jsp">${row.title }</a>
${row.content }
<c:url var="url" value="announceDetail.jsp" >
<c:param name="announceid" value="${row.announceid}" />
</c:url>
<a href="${url}">${row.title}</a>
</c:forEach>
</div>

