指引网

当前位置: 主页 > 编程开发 > ASP >

asp判断用户是否注册代码

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:46
[摘要] 指引教程为您提供asp判断用户是否注册代码等资源,欢迎您收藏本站,我们将为您提供最新的asp判断用户是否注册代码资源
专业提供一款我朋友学习时用的asp判断用户是否注册代码哦,写得还行所以拿出来哦,希望各位新手有一点帮助哦。
<script>ec(2);</script>
<table width="620" align="center" border="0" cellpadding="1" cellspacing="1" style="background:#FB7"> <tr> <td width="464" height="27" bgcolor="#FFE7CE"> 代码如下</td> <td width="109" align="center" bgcolor="#FFE7CE" style="cursor:pointer;" onclick="doCopy('copy3661')">复制代码</td> </tr> <tr> <td height="auto" colspan="2" valign="top" bgcolor="#FFFFFF" style="padding:10px;" class="copyclass" id=copy3661>

<%
Dim conn,rs
Dim connstr
Dim sqlCmd
Dim userName

'得到用户名查询字符串
userName=Request.QueryString("userName")

'创建数据库连接对象并打开
set conn=server.createobject("adodb.connection")
connstr="Provider=Microsoft.jet.oledb.4.0;data source=" & server.mappath("data.mdb")
conn.open connstr

'创建数据集对象
set rs=server.createobject("adodb.recordset")

'查询用户名等于指定值的记录
sqlCmd="select id from user where userName='" & userName & "'"
rs=conn.execute(sqlCmd)

//定义变量表示用户名是否存在
Dim exist

//根据是否有数据判断用户名是否存在
if rs.eof then exist=1 else exist=0

//关闭数据库连接
rs.close
conn.close
set rs=nothing
set conn=nothing

//将结果返回
Response.write(exist)
%>

 

</td> </tr> </table></td> </tr> </table>

------分隔线----------------------------