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>

[1094 byte] By [iketurnaa] at [2007-10-3 4:33:56]
# 1
That isn't the source code for a JSP that produces a link with href="search.jsp". So you are looking at the wrong source code.
DrClapa at 2007-7-14 22:37:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Exactly,I searched the entire site and i cannot find a trace of the souce or text search.jsp.crazy!could my tomcat be an issue?M
iketurnaa at 2007-7-14 22:37:34 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...