HI,
MY
jsp code is
<%
//Calling the class processDAO and the ICode value
processDAO dao=new processDAO();
String ICode=dao.newsupplier();
%>
and then i write
<html:text styleClass="txfield" property="code" value="<%= ICode %>" disabled="true"/>
My form bean is
public String code;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
but its not taking the value;
But i write it as a disbled="false" in jsp it takes a value
Help me,
Thanks in advance