i use a bean with session scope in all of my JSPs in a particular app
i'm working on by using the following:

<jsp:useBean id="name" class="Name" scope="session"/>

however, i've need to reset this particular bean at some point...i tried
this by running the following:

name = new Name();

this did not work...is there any workaround to restore a bean w/ session
scope back to it's original state?

thanks!

Reply via email to