こんにちは、数字とボタンが表示されるJSPプログラムをやりたいです。ユーザーがこのボタンをクリックすると、その上の数字が増加します。このプログラムにセッションを含めたい。
私がやったことはこれです:
これは html のフォームです。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>My Form</title>
</head>
<body>
<%! public void displayNum(){ %>
Number: <%=session.getAttribute("Counter") %>
<%! } %>
<FORM METHOD=POST ACTION="getcount.jsp">
<button TYPE="button" ONCLICK= "displayNum()">Add 1</button>
</FORM>
</body>
</html>
これはmyJSPファイルです:
<%
AddCount addCount = new AddCount();
addCount.setCounter(addCount.addCounter(addCount.getCounter()));
int counter = addCount.getCounter();
session.setAttribute("Counter", counter);
%>
ここで、AddCount は、変数カウンター、セッター、ゲッター、およびカウンターを増やす関数 (addCount(num)) を持つ Java クラスです。ファイルを実行したときに得られるのは、テキストのないボタンだけです:/
私は何度も何度も試してきました。誰か助けてくれませんか?
ありがとう!