学生管理信息系统(jsp与servlet)

时间:2014-11-27 18:02:05
【文件属性】:

文件名称:学生管理信息系统(jsp与servlet)

文件大小:659KB

文件格式:ZIP

更新时间:2014-11-27 18:02:05

BS

初学者最好理解的系统 通过编写登入注册界面登录到我们学生信息管理系统, 而且在学生信息管理系统中实现增添查改各项功能 用到的数据库 create table U_ser( id int identity(1,1) primary key, username varchar(20) not null, password varchar(50) not null, ) select * from u_ser; insert into U_ser(username,password) values('admin','123'); insert into U_ser(username,password) values('tom','123'); insert into U_ser(username,password) values('jack','123'); create table student( sno varchar(12) primary key not null, sname varchar(30) not null, ssex varchar(4) not null, sage varchar(20)not null, sdept varchar(20) not null, major varchar(30) not null, grade varchar(50) not null )


【文件预览】:
stujsp
----.project(1KB)
----.mymetadata(288B)
----src()
--------DTO()
--------DAO()
--------servlet()
--------DBManager()
----WebRoot()
--------WEB-INF()
--------regist.jsp(2KB)
--------index.jsp(813B)
--------success.jsp(1KB)
--------check.jsp(2KB)
--------META-INF()
--------stu()
--------save.jsp(2KB)
--------login.jsp(2KB)
----.myeclipse()
----.classpath(410B)

网友评论

  • 代码不错,可惜不是我想要的