Problem in JSTL
Hi friends
I want to disable textbox. So I am using setAttribute in session.
I use scriplets code everything comes properly. I want to use jstl tags.
See Normal Scriplet Code :
<html:text styleClass="searchSelectBoxFive" property="timeBetAlmAlerts" disabled='<%=((Boolean)session.getAttribute("isDisabled")).booleanValue()%>'/>
I want to use same code in JSTL tags
<html:text styleClass="searchSelectBoxFive" property="timeBetAlmAlerts" disabled=''><c:out value='${isDisabled}'/>" />
This code is not working properly. Please tell another way.
Please.
Regards
Pooja

