JSP Problem

I have a jsp page in which i have severeal checkboxes.When a checkbox ic clicked page is reloaded.But i want to come back to same part of the window that contains the clicked checkbox at the time of loading.Any idea how to do it?//
[259 byte] By [Anurag_Tripathia] at [2007-11-26 16:04:30]
# 1
http://www.comptechdoc.org/independent/web/html/guide/htmlanchors.html
tolmanka at 2007-7-8 22:26:27 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Try following:

<c:choose>

<c:when test="${not empty param.checkBox1}">

<input name="checkBox1" type="checkbox" checked/>

</c:when>

<c:otherwise>

<input name="checkBox1" type="checkbox" />

</c:otherwise>

</c:choose>

By Avatar Ng

[from KLJUG]

Avatar_Nga at 2007-7-8 22:26:27 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...