hello! I have this url www.someurl.jsp?param=1 and i want to store the 1 into a variable
i wrote this
<% int r=request.getParameter("param");%>
and i have an error "incompatible types ,required:int, found:String" i wrote then this
<% int r= (int) request.getParameter("param");%>
but it doesnt work also...