How to determine calling page (view) in backing bean

Hi everyone,I'm very new to JSF. I'd like to know if there is any way to deterine the calling page (view) in the backing bean. For example, if I click a link from A.jsp to change to B.jsp then in the backing bean of B.jsp how can I get info about A.jsp?Thanks a lot.
[289 byte] By [snew2k5a] at [2007-11-27 4:44:50]
# 1
You can use following code in your bean-FacesContext fc = FacesContext.getCurrentInstance();String view =fc.getViewRoot().getViewId();
chitra_Ja at 2007-7-12 9:56:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
I've tried but got info about B.jsp, not A.jsp
snew2k5a at 2007-7-12 9:56:58 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...