tags:

views:

23

answers:

1

the login page is displaying "#{ad.userid}" in input text box when loaded . I erased it and entered userid and pwd.when i clicked submit button the action method is called but the value in userid is being null in bean.could you resolve please.

+1  A: 

Do you have getter and setter method for your name property in your bean?

Are they being call when you press submit button ?

Do you have all your components inside the h:form? ex:-

<h:form>
<h:inputText value="#{mybean.name}" />
<h:commandButton value="CLICK" action="#{bean.method}" />
</h:form>

post your xhtml and bean

daedlus