<%@page contentType="text/html;charset=Big5"%>
<html>
<head><title>form_data</title></head>
<body>
<form method="post" action="form.jsp"> //設定表格
姓名:<input type="text" name="Name">
</br>
<input type="submit" value="送出">
</form>
</body>
</html>
----------------form.jsp------------------
<%@page contentType="text/html;charset=Big5"%>
<HTML>
<HEAD><TITLE>presentation</TITLE></HEAD>
<BODY>
<% //request.setCharcterEncoding("big5"); //強制轉為BIG5
String name = request.getParameter("Name"); //接收使用者輸入的字串
%>
<%=name %>;您好
//<%=字串%> 等於 out.println("字串")
</BODY>
</HTML>
沒有留言:
張貼留言