How to handle session timeout for a frame.
843836Jul 12 2005 — edited Jul 28 2006Hi,
i am using jboss and struts for my application.
in web.xml
<filter>
<filter-name>AuthorizationFilter</filter-name>
<filter-class>com.base.filter.AuthorizationFilter</filter-class>
<init-param>
<param-name>LoginPage</param-name>
<param-value>/base/login.jsp</param-value>
</init-param>
</filter>
after i login, i will go to index.jsp which contain 3 frames.
1 is topbanner frame
2 is menu frame
3 is content frame
in menu.jsp when i click at any menu link, will take effect on the content frame only.
so, prob is, when a session is timeout and when i click on the menu link, the login page will show in the content frame.
May i know how solve this.
thanks