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?//
# 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]