1 2 3 4

10.20

哈哈哈哈哈哈哈哈!!!经过几天web相关知识的学习,今天上课终于遇到了一个添加课程的web小系统,果然不出我所料,我依然啥也写不出来。多少有点惊喜哈!

不过根据网上的一些代码示例,还是写出一个简单的界面的,来,上代码

这是一个选课的简单的界面,

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>提交作业</title>
    /*<style type="text/css">
        body{
            background: #FFFF00;
            align-items: center;
            text-align: center;
        }
    </style>*/
    
</head>

<body>
<body background="123.jpg"></body>
<%
String s=(String)request.getAttribute("Error");
if("".equals(s)||s==null)
{
    s="";
}
%>
<%=s %>
<form action="LoginInput.jsp" method="get">
        <table align="center" border="1">
<tr>
<td colspan="2">
课程名称
 <input type="text" name="name"/>
</td>
</tr>
<tr>
   <td colspan="2">
    任课教师
 <input type="text" name="teacher"/>
   </td>
  </tr>
  <tr>
   <td colspan="2">
    上课地点
 <input type="text" name="place"/>
   </td>
  </tr>
 
  <tr>
  <td align="center" colspan="2">
   <input type="submit" value="保存"/></td>
  </tr>
  </table>
  </form>
</body>
</html>

然后非常懊恼的就是不知道咋往数据库添加数据,知识安装了数据库,但是不会用,多少尴尬了。明天继续努力这一部分!

posted @ 2020-10-20 23:31  小陈的太阳  阅读(51)  评论(0编辑  收藏  举报