上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页
摘要: <html> <head> <title>Title</title> </head> <body> <h1>${sessionScope.role}${sessionScope.User.id}</h1> <br> <% String role=(String) session.getAttribu 阅读全文
posted @ 2024-02-27 21:44 伐木工熊大 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package DAO; import bean.School; import bean.Stu; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import jav 阅读全文
posted @ 2024-02-18 22:41 伐木工熊大 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 登录原码: <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <html> <head> <title>JSP - Hello World</title> </head> <body background= 阅读全文
posted @ 2024-02-18 03:46 伐木工熊大 阅读(1) 评论(0) 推荐(0) 编辑
摘要: <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <html> <head> <title>JSP - Hello World</title> </head> <div style="text-align: 阅读全文
posted @ 2024-02-18 03:46 伐木工熊大 阅读(7) 评论(0) 推荐(0) 编辑
摘要: package DAO; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; public class DBUtil //用于连接数据库 { String name="roo 阅读全文
posted @ 2024-02-18 03:46 伐木工熊大 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 设计的页面 主页面: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="Beans.DAOImpl"%> <%@ page import="B 阅读全文
posted @ 2024-02-15 04:42 伐木工熊大 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 有关图书的简单管理 bean: package Beans; public class Books { private int bookId; private String bookName; private double price; public int getBookId() { return 阅读全文
posted @ 2024-02-14 03:48 伐木工熊大 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在js中,有很多种的事件监听 常见的鼠标事件监听事件名 事件描述onclick 当鼠标单机某个对象ondblclick 当鼠标双击某个对象onmousedown 当某个鼠标按键在某个对象上被按下onmouseup 当某个鼠标按键在某个对象上被松开onmousemove 当某个鼠标按键在某个对象上被移 阅读全文
posted @ 2024-02-13 03:56 伐木工熊大 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 今天根据黑马的视频来完成一些小练习 用js来: 1.切换图片 2.在文本后添加文字 3.使所有的复选框被选中 <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <!DOCTYPE html> <html> 阅读全文
posted @ 2024-02-12 02:56 伐木工熊大 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 我们在登录之后账号已经存入session中,所以我们要修改密码的流程中就需要验证原密码先。 登录后页面: <%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %> <html> <head> <title>Titl 阅读全文
posted @ 2024-02-10 20:47 伐木工熊大 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 22 下一页