クエリを処理し、同じページ jsp に結果を表示する ラベルとテキスト ボックスを含むサインアップ ページを作成し、登録ボタンをクリックして登録します 実行する必要があるクエリを挿入 (SQL データベースに挿入) し、サインアップ ページに結果を表示します成功またはエラー ロジックとコードのサンプルを教えてください
質問する
262 次
1 に答える
0
インサーブ
詳細が満たされていない場合は、以下のようなエラーメッセージを含む発送ページ..
try {
HttpSession httpSession = req.getSession(true);
httpSession.setAttribute("errormessage", message);
req.getRequestDispatcher("register.jsp").forward(req, resp);
} catch (ServletException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
このようにjspに変更を加えます
<%
String errormessage = (String) request.getSession().getAttribute("errormessage");
if(errormessage != null)
{
errormessage =errormessage;
}
else
{
errormessage ="";
}
%>
<div id="login_error" class="common-box">
<span><%= errormessage %> </span>
<% request.getSession().removeAttribute("errormessage");
%>
</div>
于 2013-02-02T07:50:45.700 に答える