I Have a hidden box in my HTML. How I can get it value in my GWT when onModuleLoad??
the hidden box will content a value pass from another page. Now I can see the hidden box content the value but I fail to get the value in my GWT onModuleLoad.
HTML page: [code] <% String sSessionID=request.getParameter("NA_SessionID"); if(sSessionID==null) session.setAttribute("NetAdminSession",(String)session.getAttribute("NetAdminSession")); else session.setAttribute("NetAdminSession",sSessionID); %>
">[/code]