problem with scriplet code in jsp
i am making web application
in that haviing problem with code that binded with html tags..
like
<html:checkbox property="chk" value="<%=rs.getString("shifttype_id") %>"> </html:checkbox></td>
this code working fine in local but when i upload in server then it not working i have to change it like
<input type="checkbox" name="chk" value="<%=rs.getString("shifttype_id") %>" />
then its working properlly ..
but i have to make change in hole application so any other solution..
problem with every html tag like <html:text>,<html:checkbox>,<htnl:option>,
<html:submit>..