19 lines
404 B
Plaintext
19 lines
404 B
Plaintext
<%@ page import="login.UserDB" %><%--
|
|
Created by IntelliJ IDEA.
|
|
User: 25589
|
|
Date: 2024/11/17
|
|
Time: 下午9:26
|
|
To change this template use File | Settings | File Templates.
|
|
--%>
|
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
|
<html>
|
|
<head>
|
|
<title>JDBC应用</title>
|
|
</head>
|
|
<body>
|
|
<% UserDB dbBean = new UserDB();
|
|
dbBean.ShowCommonUsers();
|
|
%>
|
|
</body>
|
|
</html>
|