Spring-MVCの散歩道 > SpringMVC の小径 > 第6歩 Spring-MVC 大きな一歩 > パラメータリクエスト
|
<!DOCTYPE html> <html> <head> <title>Who are You ?</title> <meta charset="UTF-8" /> </head> <body> <form action="./hello.xhtml" method="post"> <table> <tr> <td> あなたのお名前は? <input type="text" name="myname" size="40" /> </td> </tr> <tr> <td> <input type="submit" value="回答します" /> </td> </tr> </table> </form> </body> </html> |