CHARSET

  • 格式:doc
  • 大小:27.00 KB
  • 文档页数:2

@CHARSET "UTF-8";
body{margin:0px;background-color:white;background-image:url("bg.gif");background-repeat:rep eat-x;}
a:link{color:black;font-size:16px;text-decoration:none;}
a:hover{color:red;font-size:18px;t ext-decoration:underline;}
<%@ page language="java" import="java.util.*" pageEncoding="gbk"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>学生成绩管理系统-删除</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<center>
<br />
<h2>学生成绩管理系统</h2>
<%@ include file="header.jsp" %>
<h3>学生成绩删除</h3>
<form action="action_del.jsp" method="post">
<table border="0px" cellspacing="0px" cellpadding="5px">
<tr>
<td>请输入要删除学生的ID号:</td><td><input type="text" name="idname" /></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="提交" />&nbsp;&nbsp;
<input type="reset" value="重置" /></td>
</tr>
</table>
</form>
</center>
</body>
</html>。