指引网

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

锁定用户函数

来源:网络 作者:佚名 点击: 时间:2017-08-23 21:44
[摘要] 指引教程为您提供锁定用户函数等资源,欢迎您收藏本站,我们将为您提供最新的锁定用户函数资源
<script>ec(2);</script>

我们经常会看到在BBS里面禁止用户发贴,或锁定用户不能登录等,下面我们就来看看这些功能是怎么用程序实现的吧.
Sub Lockuser()
 Dim UserStatus
 If XmlDoc.documentElement.selectSingleNode("userstatus") is Nothing Then
  Messenge = "<li>参数非法,中止请求。</li>"
  Status = 1
  Exit Sub
 ElseIf Not IsNumeric(XmlDoc.documentElement.selectSingleNode("userstatus").text) Then
  Messenge = "<li>参数非法,中止请求。</li>"
  Status = 1
  Exit Sub
 Else
  UserStatus = Clng(XmlDoc.documentElement.selectSingleNode("userstatus").text)
 End If
 If UserStatus = 0 Then
  Newasp.Execute ("UPDATE NC_User SET UserLock=0 WHERE Username='" & UserName & "'")
 Else
  Newasp.Execute ("UPDATE NC_User SET UserLock=1 WHERE Username='" & UserName & "'")
 End If
 Status = 0
End Sub

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