how to put managed bean in page scope?

HI,I need to handle multiple request in my jsf page.how to put managed bean in page scope?i dont like use session scope.can any one help,thanks,siva
[197 byte] By [sivasaia] at [2007-11-27 4:06:16]
# 1

if u want to use the request scope and handline in session, I think u may not achive that with JSF,

u can use some think like this

FacesContext.getCurrentInstance().getApplication().createValueBinding("#{yourBean.ID}").setValue(FacesContext.getCurrentInstance(),yourValue);

or u can set every time to page and get that value, like u can use f:param

Sriaknth

srikanthga at 2007-7-12 9:11:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
You need the 'request' scope.<managed-bean-scope>request</managed-bean-scope>
BalusCa at 2007-7-12 9:11:22 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...