<%--jsp:include 当page页面出现变化的时候JSP引擎能及时编译出来 --%>
<jsp:include page="login_top.jsp"/>
<%--jsp:forward只能内部跳转 --%>
<jsp:forward page="admin.html"></jsp:forward>
----------------------数据链接方式----------------------
//1.取得表单提交过了的数据
String name = request.getParameter("name");
String pwd = request.getParameter("pwd");
//2.加载JDBC驱动
String drivername="com.mysql.jdbc.Driver";
Class.forName(drivername);
//3.创建连接对象
String url="jdbc:mysql://127.0.0.1:3306/news?"+"user=root&password=root";
Connection connection=DriverManager.getConnection(url);
//4.通过连接对象创建执行对象
Statement st=connection.createStatement();
String sql="select * from users where uname='"+name+"' and upwd='"+pwd+"'";
ResultSet rs=st.executeQuery(sql);
if(rs.next()){
out.print("登陆成功");
}else{
out.print("登陆失败");
}
rs.close();
st.close();
connection.close();
---------------------查找ip------------------------
String ip=request.getRemoteAddr();
ip地址<input type="text" value="<%=ip%>" readonly="readonly">
----------------------调回主页-------------------
<script type="text/javascript">
alert("登陆失败");
open("index.jsp","_self");
</script>
--------------------跳转任何页面---------------
//采用响应对象跳转页面
response.sendRedirect("login_top.jsp");
---------------------统计访问人数--------------
application是存储全局变量
用于:统计人数列举所有登录用户
web服务器停止运行application数据清空
禁止吧过于大的数据放在application中
<%
int sum=0;
if(application.getAttribute("SUM")==null){
++sum;
application.setAttribute("SUM", sum);
}else{
String s=application.getAttribute("SUM").toString();
sum=Integer.parseInt(s);
++sum;
application.setAttribute("SUM", sum);
}
out.print("您是第"+sum+"个访问本网站的用户!!");
%>
---------------------session内容--------------
session是指用户与服务器的通信会话
打开新的浏览器 创建新的session
只要处于当前浏览器session一直保存(时间一般为20分钟)
---------------------jsp内置对象--------------
request内置对象
response内置对象
out内置对象
session内置对象
application内置对象
pageContext内置对象
config内置对象
exception内置对象
page内置对象
<jsp:include page="login_top.jsp"/>
<%--jsp:forward只能内部跳转 --%>
<jsp:forward page="admin.html"></jsp:forward>
----------------------数据链接方式----------------------
//1.取得表单提交过了的数据
String name = request.getParameter("name");
String pwd = request.getParameter("pwd");
//2.加载JDBC驱动
String drivername="com.mysql.jdbc.Driver";
Class.forName(drivername);
//3.创建连接对象
String url="jdbc:mysql://127.0.0.1:3306/news?"+"user=root&password=root";
Connection connection=DriverManager.getConnection(url);
//4.通过连接对象创建执行对象
Statement st=connection.createStatement();
String sql="select * from users where uname='"+name+"' and upwd='"+pwd+"'";
ResultSet rs=st.executeQuery(sql);
if(rs.next()){
out.print("登陆成功");
}else{
out.print("登陆失败");
}
rs.close();
st.close();
connection.close();
---------------------查找ip------------------------
String ip=request.getRemoteAddr();
ip地址<input type="text" value="<%=ip%>" readonly="readonly">
----------------------调回主页-------------------
<script type="text/javascript">
alert("登陆失败");
open("index.jsp","_self");
</script>
--------------------跳转任何页面---------------
//采用响应对象跳转页面
response.sendRedirect("login_top.jsp");
---------------------统计访问人数--------------
application是存储全局变量
用于:统计人数列举所有登录用户
web服务器停止运行application数据清空
禁止吧过于大的数据放在application中
<%
int sum=0;
if(application.getAttribute("SUM")==null){
++sum;
application.setAttribute("SUM", sum);
}else{
String s=application.getAttribute("SUM").toString();
sum=Integer.parseInt(s);
++sum;
application.setAttribute("SUM", sum);
}
out.print("您是第"+sum+"个访问本网站的用户!!");
%>
---------------------session内容--------------
session是指用户与服务器的通信会话
打开新的浏览器 创建新的session
只要处于当前浏览器session一直保存(时间一般为20分钟)
---------------------jsp内置对象--------------
request内置对象
response内置对象
out内置对象
session内置对象
application内置对象
pageContext内置对象
config内置对象
exception内置对象
page内置对象