K
Krish
how can i pass parameter from JSP to servlet
/////in the JSP ////
<%String filechoice="1";
request.setAttribute("filechoice",filechoice); %>
//////in the servlet///
(String)request.getAttribute("filechoice"))
But I am getting null exception error....I am new to JAVA....need help
/////in the JSP ////
<%String filechoice="1";
request.setAttribute("filechoice",filechoice); %>
//////in the servlet///
(String)request.getAttribute("filechoice"))
But I am getting null exception error....I am new to JAVA....need help