I need to make the select field bring me the information that is in
I need to make the select field bring me the information that is in
I do not remember jsp very well But the idea is this
if(endereco.getEstado().equals("sp")){
//manda printar o html aqui
//exemplo
<option value="<%=endereco.getEstado()%>" selected>SP</option>
}
Use the html to make an option checked
<select name="estado">
<option value="sp" selected>São Paulo</option>
</select>