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

📄 chkuser.asp

📁 家政公司管理系统源代码,供参考cccsdsfd
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="conn.asp" -->
<%	
	dim username
	dim password
	dim sql	
	
	username=replace(trim(request("usern")),"'","")
	password=replace(trim(Request("userp")),"'","") 
	
	Set ws = Server.CreateObject("ADODB.Recordset")
	sql="select * from puser where hid='"&username&"' and hpwd='"&password&"'"
	ws.open sql,conn,1,1
	if not ws.eof then		
		session("username")=ws("hid")
		Response.Redirect "console.asp"		
	else
     Response.Redirect "main.html"		
	end if
	
	ws.close()
	set ws=nothing
	conn.close()	
	set conn=nothing	
    	
%>

⌨️ 快捷键说明

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