how Set Multiple values in cookies
Hello Friends
m using cookies in jsp
i want to store startMonth and endMonth fields data in cookies
so for startDate m using
"Cookie ck=new Cookie("startmonth",request.getParameter("startMon th"));
response.addCookie(ck);"
but i wana store endDate also in cookie so what is the way to store
it in cookies
m using
"Cookie ck1=new Cookie("startMonth",request.getParameter("startMon th"));
response.addCookie(ck1);"
"Cookie ck2=new Cookie("endMonth",request.getParameter("endMonth") );
response.addCookie(ck2);"
is this the proper way to create two cookies objects for stoaring two values in cookies
if yes then what if i wana store 10 values in cookies
|