The last thing your page does is <jsp:forward page="/index.jsp"/>.

Before that is a <c:forEach items="${ctcRow.rows}" var="row"> loop. You are probably filling up the buffer with whitespace, then the repsonse gets committed when the buffer is full.

-Tim

Maxime Colas des Francs wrote:

Hi

thks for your response, but here is my code, i don't understand where the response is commited !

_____________

<%@ page contentType="text/html; charset=iso-8859-1" language="java" errorPage="/error_jsp.jsp"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"; %>
<%@ taglib prefix="log" uri="http://jakarta.apache.org/taglibs/log-1.0"; %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql"; %>


<sql:query var="ctcRow">
   SELECT DISTINCT email FROM ctc ORDER by email
</sql:query>

<c:forEach items="${ctcRow.rows}" var="row">

        <log:info category='<%= request.getRemoteUser() %>'>
           <c:out value="${row.email}"/>
        </log:info>

</c:forEach>

<jsp:forward page="/index.jsp"/>



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



Reply via email to