当前位置:首页 > 代码 > 正文

web注册登陆页面代码(web注册登陆页面代码错误)[20240421更新]

admin 发布:2024-04-21 01:30 107


今天给各位分享web注册登陆页面代码的知识,其中也会对web注册登陆页面代码错误进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录一览:

谁有web登陆页面的全部代码

public void ProcessRequest(HttpContext context)

{

context.Response.ContentType = "text/plain";

string name = context.Request["name"].ToString();

string pwd = context.Request["pwd"].ToString();

string sql = "select * from userInfo";

DataTable dt = SqlHelper.GetTable(sql);

bool flag = true;

foreach (DataRow row in dt.Rows)

{

if (row["use_emp_no"].ToString() == name row["use_pwd"].ToString() == pwd)

{

flag = true;

}

else

{

flag = false;

}

}

if (flag == true)

{

}

else

{

context.Response.Write("登陆失败!");

}

}

jsp登陆界面源代码

1、login.jsp文件

%@ page language="java" contentType="text/html; charset=GB18030"

pageEncoding="GB18030"%

%@ page import="java.util.*" %

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

title登录页面/title

/head

body

form name="loginForm" method="post" action="judgeUser.jsp"

table

tr

td用户名:input type="text" name="userName" id="userName"/td

/tr

tr

td密码:input type="password" name="password" id="password"/td

/tr

tr

tdinput type="submit" value="登录" style="background-color:pink" input

type="reset" value="重置" style="background-color:red"/td

/tr

/table

/form

/body

/html

2、judge.jsp文件

%@ page language="java" contentType="text/html; charset=GB18030"

pageEncoding="GB18030"%

%@ page import="java.util.*" %

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

title身份验证/title

/head

body

%

request.setCharacterEncoding("GB18030");

String name = request.getParameter("userName");

String password = request.getParameter("password");

if(name.equals("abc") password.equals("123")) {

3、afterLogin.jsp文件

%

jsp:forward page="afterLogin.jsp"

jsp:param name="userName" value="%=name%"/

/jsp:forward

%

}

else {

%

jsp:forward page="login.jsp"/

%

}

%

/body

/html

%@ page language="java" contentType="text/html; charset=GB18030"

pageEncoding="GB18030"%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

title登录成功/title

/head

body

%

request.setCharacterEncoding("GB18030");

String name = request.getParameter("userName");

out.println("欢迎你:" + name);

%

/body

/html

扩展资料:

java web登录界面源代码:

1、Data_uil.java文件

import java.sql.*;

public class Data_uil

{

public  Connection getConnection()

{

try{

Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");

}catch(ClassNotFoundException e)

{

e.printStackTrace();

}

String user="***";

String password="***";

String url="jdbc:sqlserver://127.0.0.1:1433;DatabaseName=***";

Connection con=null;

try{

con=DriverManager.getConnection(url,user,password);

}catch(SQLException e)

{

e.printStackTrace();

}

return con;

}

public  String selectPassword(String username)

{

Connection connection=getConnection();

String sql="select *from login where username=?";

PreparedStatement preparedStatement=null;

ResultSet result=null;

String password=null;

try{

preparedStatement=connection.prepareStatement(sql);

preparedStatement.setString(1,username);

result=preparedStatement.executeQuery();//可执行的     查询

if(result.next())

password=result.getString("password");

}catch(SQLException e){

e.printStackTrace();

}finally

{

close(preparedStatement);

close(result);

close(connection);

}

System.out.println("找到的数据库密码为:"+password);

return password; 

}

public  void close (Connection con)

{

try{

if(con!=null)

{

con.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

public  void close (PreparedStatement preparedStatement)

{

try{

if(preparedStatement!=null)

{

preparedStatement.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

public  void close(ResultSet resultSet)

{

try{

if(resultSet!=null)

{

resultSet.close();

}

}catch(SQLException e)

{

e.printStackTrace();

}

}

}

2、login_check.jsp:文件

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

pageEncoding="utf-8"%

!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ""

html

head

meta http-equiv="Content-Type" content="text/html; charset=utf-8"

title验证用户密码/title

/head

body

jsp:useBean id="util" class="util.Data_uil" scope="page" /

%

String username=(String)request.getParameter("username");

String password=(String)request.getParameter("password");

if(username==null||"".equals(username))

{

out.print("script language='javaScript' alert('用户名不能为空');/script");

response.setHeader("refresh", "0;url=user_login.jsp");

}

else

{

System.out.println("输入的用户名:"+username);

String passwordInDataBase=util.selectPassword(username);

System.out.println("密码:"+passwordInDataBase);

if(passwordInDataBase==null||"".equals(passwordInDataBase))

{

out.print("script language='javaScript' alert('用户名不存在');/script");

response.setHeader("refresh", "0;url=user_login.jsp");

}

else if(passwordInDataBase.equals(password))

{

out.print("script language='javaScript' alert('登录成功');/script");

response.setHeader("refresh", "0;url=loginSucces.jsp");

}

else

{

out.print("script language='javaScript' alert('密码错误');/script");

response.setHeader("refresh", "0;url=user_login.jsp");

}

}

%

/body

/html

3、loginSucces.jsp文件

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

pageEncoding="utf-8"%

!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ""

html

head

meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"

titleInsert title here/title

/head

body

hr size="10" width="26%" align="left" color="green"

font size="6" color="red" 登录成功 /font

hr size="10" width="26%" align="left" color="green"

/body

/html

4、user_login.jsp文件

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

pageEncoding="utf-8"%

!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ""

html

head

meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"

title登录界面/title

/head

body  background="C:\Users\win8\workspace\Login\image\9dcbdc339e72a5663b5c289fb5573c13_10.jpg"

center

brbrbrbrbrbr

h1 style="color:yellow"Login/h1

br

form name="loginForm" action="login_check.jsp" method="post" 

table Border="0"

tr

td账号/td

tdinput type="text" name="username"/td

/tr

tr

td密码/td

tdinput type="password" name="password"

/td

/tr

/table

br

input type="submit" value="登录" style="color:#BC8F8F"

/form

/center

/body

/html

如何写一个web登陆网页?

这个不是几句话就能说出来的 ,需要做很多的配置文件处理,前端比较简单的就不要说了,你要有php的服务器和mySql数据库,然后你得装环境,让你的php能运行起来,你需要用代码配置接口,服务器,如果没有接触过这个的话,估计很难成功

学信网账号注册web代码是什么

学信网账号注册步骤

第一步:打开网页搜关键字“学信网”或者直接输入网址: ,进入如下截图页面。

第 1 页

丹东 毕业证 出货速度快 24小时接单 满意后付款

最近14分钟前有人拨打电话咨询问题

点击立即咨询,了解更多详情

咨询

仙居县惠精信息咨询.. 广告

第二步:找到账号注册界面,首页往下来一点,找到首页的学信档案区域,找到注册按钮,如截图箭头所指的地方,点击进入。

第三步,点击注册后会出现如下界面,如实填写您的个人信息。

温馨提示:1、你要注册的手机号码要比较常用,预计不会换的最好,以后查学历还需要用到这个账号。

第 2 页

          2、密码最好设置简单的如8个1,8个6之类的,因为这个不会涉及到什么财产安全,也不会被随意改变信息,所以密码简单好记就好,不然自己容易忘记。

          3、身份证号码要绑定本人的,别输入错误,身份证号码输错则查不到信息。

          4、密保的答案建议如果涉及到回答人名的,答案多以自己名字,如果涉及到数字的,可以多以自己的生日,日后方便记忆。

第 3 页

还有就是要记得这个短信验证码的时效性,60秒有效。

第四步,注册成功后会显示如下页面。

第 4 页

百度文库

搜索

百度文库10亿海量资料,查找管理一应俱全

打开APP

继续阅读本文档

APP内免费读全文

免费读学信网账号注册步...全文

APP

打印

导出为WORD

导出为PDF

发送至微信

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

相关文档

学信网登录流程-学历网

免费获取全文

学信网下载学历注册备案表方法

免费获取全文

注册学信网账号的常见问题(完整版)

免费获取全文

学信网注册步骤

免费获取全文

学信网注册方法

免费获取全文

学信网注册流程

14193人正在看

学信网注册流程

1156人正在看

学信网注册流程

1365人正在看

学信网信息注册步骤

945人正在看

查看更多

为您精选

学信网账号注册步骤(图文)

会员文档715篇

人气好文

学信网登录流程-学历网

8.7万人阅读

学信网下载学历注册备案表方法

2494人阅读

热门TOP

注册学信网账号的常见问题(完整版)

1015人阅读

学信网注册步骤

4.5万人阅读

立即开通VIP

学信网账号注册步骤(图文)_学历认证网_国外学历文凭_加急咨询

学信网账号注册步骤(图文),学历认证网,费用低,高效,免费咨询,与百所知名大学合作,经验丰富学历认证网,提供一对一咨询,先操作,保障双方利益,资料保密,诚实守信,定期反馈

qianhu.wejianzhan.com广告

学信网账号注册步骤(图文)_丹东 〖正规〗帮写文章的网站-全职疯牛写手团队

学信网账号注册步骤(图文),10年专注文章写作,帮写文章的网站,品质保证-快速出稿-准时交付-全网低价;服务保障修改至满意为止,一站式解决方案;

qianhu.wejianzhan.com广告

基于你的浏览为你整理资料合集

学信网账号注册web代码是什么

文件夹

学信网注册步骤 - 百度文库

3.3分 2577阅读 值得一读

学信网注册方法 - 百度文库

3.9分 1.8万阅读 热度TOP

学信网注册流程 - 百度文库

4.9分 2365阅读

剩余21篇精选文档

APP内一键获取全部合集

890人已获取

工具

收藏

APP

java web网页登录功能原理(最好有代码❳

想要实现一个简单的登录功能的话,可以使用Servlet+jsp来实现,jsp编写登录界面和登录后的要出现信息界面和登录失败的信息界面,Servlet类用来对表单提交的用户名和密码进行判断和处理。

具体代码如下:

Servlet类:

public class DemoServlet extends HttpServlet {

public void doGet(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

String loginname = request.getParameter("loginname");

String password = request.getParameter("password");

if(loginname.equals("a") password.equals("a")){

request.setAttribute("msg", "登录成功");

request.getRequestDispatcher("/loginsuccess.jsp").forward(request, response);

}else{

request.setAttribute("msg", "登录失败");

request.getRequestDispatcher("/loginsuccess.jsp").forward(request, response);

}

}

public void doPost(HttpServletRequest request, HttpServletResponse response)

throws ServletException, IOException {

doGet(request, response);

}

}

jsp页面:

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

titleDemo/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

/head

body

form action="demoServlet" method="post"

input type="text" name="loginname"/br/

input type="password" name="password"/br/

input type="submit" value="登录"/

/form

/body

/html

登录信息页面:

%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%

%@ taglib prefix="c" uri="标签库地址"%

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

html

head

titleMy JSP 'loginsuccess.jsp' starting page/title

meta http-equiv="pragma" content="no-cache"

meta http-equiv="cache-control" content="no-cache"

meta http-equiv="expires" content="0"

meta http-equiv="keywords" content="keyword1,keyword2,keyword3"

meta http-equiv="description" content="This is my page"

/head

body

${msg }

/body

/html

需要介绍一下:登录信息的这个页面中的${msg }是使用jstl标签,需要在jsp页面中导入jstl标签库,使用这个标签库可以节省很多代码量。

关于web注册登陆页面代码和web注册登陆页面代码错误的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

版权说明:如非注明,本站文章均为 AH站长 原创,转载请注明出处和附带本文链接;

本文地址:http://ahzz.com.cn/post/139.html


取消回复欢迎 发表评论:

分享到

温馨提示

下载成功了么?或者链接失效了?

联系我们反馈

立即下载