setAttribute/getAttribute
Hi
I am having problem with setAttribute and getAttribute.
in my first servlet i have
String[] test = {"test1", "test2", "test3"};
request.setAttribute("supplyName", test);
<FORM>
-
-
</FORM>
from my second servlet i have
String[] abc = (String[])request.getAttribute("supplyName");
problem is my abc is null.
Anyone has solution to problem, please let me know.
AP

