0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

From(フォーム)

Last updated at Posted at 2020-03-27

From(フォーム)

webページに入力したデータをサーバーサイドプログラムに送信
入力項目のまとまり

記述
<form action="送信先" method="リクエストメソッド">...</from>

リクエストメソッド

GETリクエスト
新しい情報(Webページ等)を取得

POSTリクエスト
フォームに入力した情報を登録

テキストボックス

記述
<input type="text" name="部品名">

パスワード

記述
<input type="password" name="部品名">

ラジオボタン

記述
<input type="radio" name="部品名" value="値">

送信ボタン

記述
<input type="submit" value="送信">

リクエストパラメータ取得方法

APサーバによってHttpServletRequestインスタンスに格納されて送信先のサーブレットクラスまたはJSPファイルに渡される

文字コードの指定

記述
request.setCharacterEncoding("送信元HTMLの文字コード");

取得

記述
String xxx = request.getParameter("リクエストパラメータの名前");
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?