Отображение строкового значения в JSP - PullRequest
0 голосов
/ 04 июня 2019

Я получаю значение Total Price в 1-й строке кода и могу видеть значение, записанное также в 6-й строке этого кода, НО, когда я пытаюсь отправить это значение в другую JSP в форме в 5-м Строка этого кода, то я получаю нулевое значение. Я знаю, что писать сценарии в JSP - плохая идея, но я изучаю JSF, пока что, пожалуйста, помогите мне узнать, как получить строку значений "s" в billing.jsp?

    <div>Total price: $<span class="total-cart"></span></div> // Here I am 
    getting total price value lets say $10

    <%String s="<span class=total-cart></span>";%> // here I stored the 
    total price $10 in a string "s"

      <form name="billing" action="billing.jsp">        <div>
    <input type="hidden" name="price" value="<%=s%>"/> // Here Unable to get 
 // the s value $10 and thus unable to send this $10 to another JSP
 // billing.jsp
    <input type="submit"/> Order now <%=s%>// But here I am getting value$10 

  </div>
      </form>

Billing.jsp


 <%

String price=""; 

 price=request.getParameter("price").toString();
out.println(price);  // Here I want to display the value of string "s" that 
// is total price $10 but getting null value

 %>

Пожалуйста, помогите мне, где я не прав

...