Sayre Robert wrote:

> You should check the capitalization of your bean properties:
> is it "eMail" or "EMail"? 
> 
> the jsp tag: <jsp:setProperty name="dataBean" property="eMail"/>
> calling the set method: dataBean.setEMail( request.getParameter( "eMail" )
> );
> 
> I would try <jsp:setProperty name="dataBean" property="EMail"/>.
> 
> Robert Sayre

 From the bean class:

------------------------------------
protected String eMail;

public void setEMail(String EMail) {
   this.eMail = EMail;
}

public String getEMail() {
   return eMail;
}
------------------------------------

The capitalization seams OK. I'll try your suggestion.

Nix.


--
To unsubscribe:   <mailto:[EMAIL PROTECTED]>
For additional commands: <mailto:[EMAIL PROTECTED]>
Troubles with the list: <mailto:[EMAIL PROTECTED]>

Reply via email to