巴扎黑2017-04-18 10:00:28
<% if(${porfiles.bdb}.equals("0")){
}
Syntax error. Looking at the error message, it is obviously a jsp compilation error.
There is a problem with the syntax in this place.
In jsp, <% //There is normal java syntax here. It will not recognize your way of writing el expressions and the like. %>
If you want to use el expression, don’t use it inside <%%>
Just use it outside
ringa_lee2017-04-18 10:00:28
In addition to what is mentioned above, it is more reliable to put the string 0 in the front, otherwise it will be empty in the front
PHPz2017-04-18 10:00:28
Never write this kind of code, readability and maintainability are zero. !