首页 > 其他分享 >4.24每日总结

4.24每日总结

时间:2023-04-25 20:36:27浏览次数:36  
标签:总结 52a3d2 name border 每日 6186a3 background font 4.24

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>登录界面</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=no">
<link rel="stylesheet" href="css/bootstrap.css">
<link href="iconfont/style.css" type="text/css" rel="stylesheet">
<style>
    body{color:#fff; font-family:"微软雅黑"; font-size:14px;}
    .wrap1{position:absolute; top:0; right:0; bottom:0; left:0; margin:auto }/*把整个屏幕真正撑开--而且能自己实现居中*/
    .main_content{background:url(images/main_bg.png) repeat; margin-left:auto; margin-right:auto; text-align:left; float:none; border-radius:8px;}
    .form-group{position:relative;}
    .login_btn{display:block; background:#3872f6; color:#fff; font-size:15px; width:100%; line-height:50px; border-radius:3px; border:none; }
    .login_input{width:100%; border:1px solid #3872f6; border-radius:3px; line-height:40px; padding:2px 5px 2px 30px; background:none;}
    .icon_font{position:absolute; bottom:15px; left:10px; font-size:18px; color:#3872f6;}
    .font16{font-size:16px;}
    .mg-t20{margin-top:20px;}
    @media (min-width:200px){.pd-xs-20{padding:20px;}}
    @media (min-width:768px){.pd-sm-50{padding:50px;}}
    #grad {
      background: -webkit-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Safari 5.1 - 6.0 */
      background: -o-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Opera 11.1 - 12.0 */
      background: -moz-linear-gradient(#4990c1, #52a3d2, #6186a3); /* Firefox 3.6 - 15 */
      background: linear-gradient(#4990c1, #52a3d2, #6186a3); /* 标准的语法 */
    }
</style>

</head>

<body style="background:url(images/bg.jpg) no-repeat;">
    <%
      String username="";
      String password="";
      String pages=request.getParameter("pages");
    session.setAttribute("pages", pages);
    out.print(pages);
      //获取cookie里面的值
      Cookie [] cookies = request.getCookies();
          if(cookies!=null){
              //遍历cookie
              for(int i = 0;i<cookies.length;i++){
                  if(cookies[i].getName().equals("username")){
                      //获取cookie里面的用户名
                      username = cookies[i].getValue();
                  }else if(cookies[i].getName().equals("password")){
                      //获取密码
                      password = cookies[i].getValue();
                  }
              }
          }
   %>
    <div class="container wrap1" style="height:450px;">
            <h2 class="mg-b20 text-center">听歌通行证</h2>
            <div class="col-sm-8 col-md-5 center-auto pd-sm-50 pd-xs-20 main_content">
                <p class="text-center font16">用户登录</p>
                <form action = "Check.jsp" method = "post">
                    <div class="form-group mg-t20">
                        <i class="icon-user icon_font"></i>
                        <input type="text"  class="login_input" id="Email1" name="username" value="<%=username %>" placeholder="请输入用户名" />
                    </div>
                    <div class="form-group mg-t20">
                        <i class="icon-lock icon_font"></i>
                        <input type="password" class=" login_input" id="Password1" name="password" value="<%=username %>" placeholder="请输入密码" />
                    </div>
                    <div class="checkbox mg-b25">
                        <label>
                            <input type="checkbox" />记住我的登录信息
                        </label>
                    </div>
                    <button style="submit" class="login_btn">登 录</button>
                    <a href="index.jsp">返回首页</a>
               </form>
        </div><!--row end-->
    </div><!--container end-->
     
</body>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>登录界面</title>
</head>
<body>
   <%
   request.setCharacterEncoding("utf-8");
   String password=request.getParameter("password");
   String username=request.getParameter("username");
   HttpSession sessions = request.getSession();
   String pages=(String)sessions.getAttribute("pages");
   if(password.equals(username))
   {
     //将信息保存在cookie中
       Cookie usernameCookie = new Cookie("username", username);
       Cookie passwordCookie = new Cookie("password", password);
       //设置Cookie的有效时间
       usernameCookie.setMaxAge(60*5);
       passwordCookie.setMaxAge(60*5);
       response.addCookie(usernameCookie);
       response.addCookie(passwordCookie);
       if(pages.equals("1")){
       %>
                <jsp:forward page="first.jsp">
                 <jsp:param value="<%=password%>" name="password"/>
                 <jsp:param value="<%=username%>" name="username"/>
                 </jsp:forward>
                <%}
       else if(pages.equals("2"))
       {
           %>
            <jsp:forward page="second.jsp">
            <jsp:param value="<%=password%>" name="password"/>
            <jsp:param value="<%=username%>" name="username"/>
            </jsp:forward>
            <%
       }
       else if(pages.equals("3"))
       {
           %>
            <jsp:forward page="third.jsp">
            <jsp:param value="<%=password%>" name="password"/>
            <jsp:param value="<%=username%>" name="username"/>
            </jsp:forward>
            <%
       }
   }
   else{
        %>
        <script>
        alert("登录失败")    
        </script>
            <jsp:forward page="Login.jsp">
            <jsp:param value="<%=pages%>" name="pages"/>
            </jsp:forward>
                <%
   }
   %> 

     
</body>
</html>

 

标签:总结,52a3d2,name,border,每日,6186a3,background,font,4.24
From: https://www.cnblogs.com/louwangshayu/p/17353744.html

相关文章

  • 4.25每日总结
    <%@pagelanguage="java"contentType="text/html;charset=UTF-8"pageEncoding="UTF-8"%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDHTML4.01Transitional//EN""http://www.w3.org/TR/html4/loose.dtd"&g......
  • 每日打卡一小时(第十六天)
    一.问题描述 二.设计思路1.利用数组输入数据2.创建一个二维数组利用循环记录每组数据前面的值除以某个数等于后面的值的数3.记录每组的最大值和最小值4.最大值中找最小值,最小值中找最大值5.输出三.流程图 四.代码实现#include<iostream>usingnamespacestd;int......
  • C++每日打卡
    计算年龄问题定义一个Birthday类,其成员变量有3个整形变量(出生的年月日):year,month,day;提供构造方法对这3个成员变量进行初始化;成员函数有getAge(),其功能是实现计算到2017年12月25日时该Birthday对象的年龄。 #include<iostream>usingnamespacestd;classBirthday{int......
  • ES6-特性总结
    EcmaScript权威地址:https://www.runoob.com/w3cnote/es6-tutorial.htmlEcmaScript视频教程:https://www.bilibili.com/video/BV1uK411H7on/?spm_id_from=333.337.search-card.all.click  ......
  • 每日总结-23.4.25
    <%@pagecontentType="text/html;charset=UTF-8"language="java"%><html><head><title>添加用户</title><style>body{background-color:#f2f2f2;font-family:Aria......
  • 山东省集 2023.4.24 HeRen 场 T2
    简要题意数轴上有\(n\)个点,给定其坐标\(x_i\)。给定\(d\),你可以将任意多个点的坐标增加\(2d\)。给定\(a,b\),接下来你可以放置若干个区间在数轴上,设某个区间\([l,r]\),其代价是\(a+b(r-l)\)。所有点都要被你放置的区间覆盖,求最小代价。数据范围:\(1\len,d,x_i\le......
  • 分享总结:开源网关-应用管理篇
    需求痛点在这互联网高速发展的时代,企业业务系统多、渠道广,如何管理内外部调用端系统具有极大的挑战。数量方面:API网关需要对各端应用统一管理,例如对企业自身很多的前端应用,包括不限于web应用、移动APP、小程序,甚至第三方各端的应用进行管理,确保各应用有序、合规调用服务。安......
  • 我总结的一些 C++ 高频面试题(收藏)
    extern“C”extern是C/C++语言中表明函数和全局变量作用范围的关键字,该关键字告诉编译器,其声明的函数和变量可以在本模块或其它模块中使用。被extern"C"修饰的变量和函数是按照C语言方式编译和连接的。extern“C”这个声明的真实目的:解决名字匹配问题,实现C++与C的混合......
  • 每日一题-合并回文子串
    合并回文子串由于n比较小,我们可以区间dp\(f[i][j][a][b]\)表示s[i,j]和t[a,b]能否一起构成回文子串。\(g[i][j],h[i][j]\)分别表示s[i,j],t[i,j]能否构成回文字串。g,h直接暴力求即可。注意判断边界条件,也就是i=j和a=b的情况#include<cstdio>#include<algorithm>#include<c......
  • SQL注入--数据外带(总结)
    目录导航  0x00数据外带平台  0x01DNS外带    MYSQL数据外带    MSSQL数据外带    Oracle数据外带    命令外带  0x02HTTP外带    MSSQL数据外带    Oracle数据外带0x00数据外带平台平台网址平台简介http......