81,119
社区成员
发帖
与我相关
我的任务
分享
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%
String str=request.getParameter("abc");
if(str==null)
{
str="";
}
if(str.equals("yes"))
{
response.setContentType("text/plain;charset=gb2312");
}
%>
<html>
<head>
<title>My JSP 'showInfo.jsp' starting page</title>
</head>
<body>
<form method="get" name="form">
<input type="submit" value="yes" name="abc"/>
</form>
</body>
</html>