Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to display dropdown on the basis of if condition,My code snippet is as below

 <%if(userType.equalsIgnoreCase("O")) {String user=(String)session.getAttribute("executorname"); %>
            <html:select style="width:190;" value="<%=user%>" property="jobOwner">
                <html:option value="<%=user %>"><%=user %></html:option>
            </html:select>
            <%} %>

I get org.apache.jasper.JasperException: /jsp/frmQueryExecutor.jsp(73,23) quote symbol expected

I want the value os session variable in dropdown.

share|improve this question
Why don't you quote the tag attribute values? – BalusC Jun 27 '12 at 12:48
Please see edited post.Even after adding quotes in value ,I am getting same error – happy Jun 27 '12 at 12:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.