⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dologin.jsp

📁 达内JAVA培训-WEB课程部分项目源代码
💻 JSP
字号:
<%@taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@include file="dataSource.jsp"%>
<sql:query dataSource="${db}" var="student">
	select * from student where user_name='${param.userName}' and password = '${param.password}'
</sql:query>
<c:if test="${!empty student.rows}" var="hasStudent">
	<h1>Welcome,${param.userName}!</h1>
</c:if>
<c:if test="${!hasStudent}">
	<h1>The user is not found.</h1>
</c:if>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -