简体   繁体   中英

How use of getparameter in jsp function

how use of getParameter in function

<%! public void search(){

String name = request.getParameter("name");
}
%>

error accepted by this code

You shouldn't do any business login on jsp.. but to resolve your issue, you can try below code:

<%!
public void search(HttpServletRequest request) {
       String name = request.getParameter("name");
}

//and while calling this on same jsp
search(request);
%>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM