How to multiply in JSP?
843833Aug 30 2001 — edited Aug 30 2001I need to do the following:
Total = dblProductPrice * strQuantity.
Can anyone provide the code as I have all sorts of conversion problem in doing this. Thanks.
<%
Number dblProductPrice=(Number) session.getAttribute("prodPrice");
String strQuantity=request.getParameter("quantity");
%>