> Ok, well if I do the following:
>     <c:set var="cfb" value="${formBean}"/>
>     <c:out value="${cfb}"/>
> 
> The name of the form object is written out.  But if I want to 
> access a property on my form cfb, how would I output that 
> value?  If I write <c:out value="${cfb.pageNumber}"/>, I get 
> a servlet exception saying that it is unable to find 
> "pageNumber" in object of class "java.lang.String"

Do you have a getter function for the pageNumber property? A method within
the cfb object that looks like this:

public String getPageNumber()
{
     return <somethingor0ther>;
}


--
Tim Slattery
[EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to