admincourse2.jsp
上传用户:mkymky1985
上传日期:2014-06-23
资源大小:754k
文件大小:2k
- <%@ page language = "java" contentType = "text/html;charset=gb2312"%>
- <%@ page import = "java.sql.*" %>
- <jsp:useBean id="subject" scope="page" class="wsxk.ConDB"/>
- <%! String trans(String chi)
- {
- String result = null;
- byte temp [];
- try
- {
- temp=chi.getBytes("iso-8859-1");
- result = new String(temp, "gb2312");
- }
- catch(Exception e)
- {
- System.out.println (e.toString());
- }
- return result;
- }
- %>
- <%
- String couid = new String (request.getParameter("couid"));
- String couname = new String (request.getParameter("couname"));
- String coumark = new String (request.getParameter("coumark"));
- String couback = new String (request.getParameter("couback"));
- //String stupsw = new String (request.getParameter("stupsw"));
- System.out.println (couid);
- //System.out.println("EEEE333");
- String str = null;
- String str2 = "";
- %>
- <% if (couid.trim().equals("")||couname.trim().equals("")||coumark.trim().equals(""))
- {response.sendRedirect("admincourseerr.htm");}
- else{String sql2 = "insert into course(couid, couname, coumark, couback) values('" + couid + "','" + trans(couname) + "','" + coumark + "','" +trans(couback)+ "')";
- subject.executeUpdate(sql2);}
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <meta HTTP-EQUIV=REFRESH CONTENT="10; URL=admincourse.jsp">
- <link href="_notes/aaa.css" rel="stylesheet" type="text/css">
- <style type="text/css">
- <!--
- @import url("_notes/ccc");
- body,td,th {
- font-size: 12px;
- color: #FFFFFF;
- font-weight: bold;
- }
- .style1 {color: #000000}
- -->
- </style>
- </HEAD>
- <BODY BGCOLOR=#0D85A6 BACKGROUND="images/bg.gif" >
- <div align="center">
- <p align="left"> <br>
- 课程录入成功,本页将于10秒内自动<a href="admincourse.jsp" class="style1">返回前页</a></p>
- <p><br>
- <img src="images/qa.jpg" width="640" height="427"></p>
- </div>
- </BODY>
- </HTML>