asp简单的用户登录

asp简单的用户登录

<!--#include file="../inc/P_connect.asp" -->
<%
 Dim uid,pwd
 uid =html_encode(Request.Form("Uid") )
 pwd =html_encode(Request.Form("pwd") )
 
 If uid ="admin_videa" and pwd="videa888" Then
  Session("Admin")=uid
  Response.Redirect("../Input.asp")
 Else
  Response.Write("<script>alert('用户名与密码不正确!');history.back();</script>")
  Response.End()
 End if
%>

下面是数据库连接函数

<%
 Dim Rs,Conn 
 Sub Db_connect()  
  Dpath ="\D_data\db2.mdb"
  Set Conn=Server.CreateObject("Adodb.connection")
  Set Rs =Server.CreateObject("Adodb.Recordset")
  Conn.connectionstring="Provider=Microsoft.Jet.oledb.4.0;Data source="&Server.MapPath(Dpath)
  Conn.open
 End sub
 
 sub closedb()
  if isobject(Rs) then
   if not(Rs is nothing) then
    Rs.close
    set Rs=nothing
    end if
   end if
  if isobject(Conn) then
   if not(Conn is nothing) then
    Conn.close
    set Conn=nothing
   end if
  end if
 end sub
 
 '********************************************************* 过滤不安全
 
 function html_encode(html)
  dim temp
  temp=replace(html,"<","&lt;")
  temp=replace(temp,">","&gt;")
  temp=replace(temp,"'","单引号")
  temp=replace(temp,chr(13),"<br>")
  html_encode=replace(temp,chr(32),"&nbsp;")
 end function
 
 function encode_html(html)
  dim temp
  temp=replace(html,"&lt;","<")
  temp=replace(temp,"&gt;",">")
  temp=replace(temp,"单引号","'")
  temp=replace(temp,chr(13),"<br>")
  encode_html=replace(temp,chr(32),"&nbsp;")
 end function
 
 这里是退出登录函数

 function Login()
  If Session("Admin")="" then
   Response.Write("<script>alert('对不起你还未登录!');location='../login.asp';</script>")
   Response.End()
  End if
 End function
 
%>

时间: 2024-09-13 11:14:21

asp简单的用户登录的相关文章

ASP.NET jQuery 实例11 通过使用jQuery validation插件简单实现用户登录页面验证功能_jquery

简单来说,jQuery validation插件就是来校验表单form里面元素输入的内容是否满足业务规则,如果不满足,可以给出用户自定义的提示信息.该插件不仅默认有一些校验规则,如校验内容是否为空,内容的长度是否符合给定的值,还可以根据用户自定义业务规则,而且错误提示信息,也可以根据用户的要求自定义显示.看来这个插件的功能确实很强大,是不是迫不及待想使用了.好的,那我们就开始简介如何使用它. jQuery validation 插件下载地址:http://plugins.jquery.com/p

最简单的用户登录js验证程序

最简单的用户登录js验证程序 <script language="javascript"> <!-- function form1_onsubmit() { if(document.form1.keyword.value=="")     {       alert("请输入查询关键字!")       document.form1.keyword.focus()       return false      } else i

Flash和ASP实现的用户登录/注册程序

核心提示:Flash和ASP实现的用户登录/注册程序教程. Flash一帧可以完成.asp也可以一个文件完成,这里我将用户登录和用户注册分为两步做,方便大家理解,Flash分两帧,asp分两个文件. 准备: Flash8 , IIS ,Miscrosoft Access 2003; 开始: 数据库中: 用设计视图新建一个名为 UserTable 的表,三个字段分别为 id 为自动编号,username为文本,password为文本; 输入一条数据 username 和 password 都为ch

JSP实现简单的用户登录并显示出用户信息的方法_JSP编程

本文实例讲述了JSP实现简单的用户登录并显示出用户信息的方法.分享给大家供大家参考.具体实现方法如下: login.jsp 复制代码 代码如下: <%@ page language="java" import="java.util.*" pageEncoding="GB18030"%>  <%  String path = request.getContextPath();  String basePath = request.

asp简单的用户登陆代码

asp简单的用户登陆代码 <% username=replace(request.form("username"),"'","''") password=replace(request.form("password"),"'","''") sql="select * from admin where(username='"&username&&q

asp 简单在线用户统计代码

asp教程 简单在线用户统计代码 这代码是用了asp apliction 与session实例的哦. <script language="vbscript" runat="server"> sub Application_onStart application.Lock() application("use_online")=0 application.UnLock() end sub sub application_onend ap

php mysql简单的用户登录实现代码

这里只给初学者用的一些参考教程,告诉你如何实现用户登录,我们是利用php教程 mysql教程做的希望对你有所帮助. $userid=trim($_POST["username"]); $userpass=trim($_POST["password"]); $admin_pass=substr(md5($userpass),0,32); //数据库教程密码 echo $userid."<br>".$admin_pass."&l

一个简单的用户登录接口asp实现

接口 <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org

asp.net 程序,用户登录时,无法跳转到相应的页面

问题描述 网站首页用其他页面都可正常打开,但如果有用户进行登录时,就会自动跳转到"default.aspx"页面上,然我在程序里写的是跳转到其他页面,搞了很久都不知道是什么原因搞的,而网站的后台,也是要输入用户名与密码的,可以正常登录.出现在的错误提示就是:找不到相关的资源!因为,我在那个目录下,根本没有default.aspx晕....希望那位知道是什么原因,给我说清一点,急用啊! 解决方案 解决方案二:跳错地方了!解决方案三:断点跟踪下.而且.你看报错的时候的url是否正确.看下请