情報システム科
Sponsored Link
<%@ page contentType="text/html; charset=Shift_JIS" %>
<%  //requestは暗黙のオブジェクト
    String tmp = request.getParameter("cars");
    String carname = new String(tmp.getBytes("8859_1"), "JISAutoDetect");
%>
<html>
<head>
<title><%= carname %></title>
</head>
<body>
<center>
<h2><%= carname %></h2>
<%= carname %>
のお買い上げありがとうございました。<br />
</center>
</body>
</html>