How can I reach e text or button value in a jsp page and change it?
<form action="school.jsp">
//page calling itself My page is school.jsp and when I click
//ok button it opens again school.jsp and adds some data from
//inputs to database and lists them.
<INPUT type="text" name="school" value=0 >
//For example I want to reach text value and want to change it like this
<% if (school==0) {%>
<% school=1%>
<% do something}%>
<% else {%>
<% do something}%>
if(request.getParameter("school").equals("0")) does not working.

