How to get value from JSF Input Text?
In html form we have method post for form and to getinput values request.getParameter("idof input");but how to get values in JSF ?on button click i want to display text bax value on pagerequest.getParameter("idof input"); this me thod is usefull in this case?
In a JSF view, you should use
<h:inputText> tag and its value attribute for binding its value to a property of your managed bean.
If it is a raw HTML FORM for which a raw servlet does call request.getParameter("idof input") , the servlet could call a JSF view as its response, if necessary.
hiwaa at 2007-7-12 20:20:18 >
