<%@LANGUAGE="VBSCRIPT"%> <% Dim Recordset1 Dim Recordset1_numRows Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_login_STRING Recordset1.Source = "SELECT * FROM login" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open() Recordset1_numRows = 0 %> <% ' *** Validate request to log in to this site. MM_LoginAction = Request.ServerVariables("URL") If Request.QueryString<>"" Then MM_LoginAction = MM_LoginAction + "?" + Server.HTMLEncode(Request.QueryString) MM_valUsername=CStr(Request.Form("name")) If MM_valUsername <> "" Then MM_fldUserAuthorization="" MM_redirectLoginSuccess="index1.htm" MM_redirectLoginFailed="error.htm" MM_flag="ADODB.Recordset" set MM_rsUser = Server.CreateObject(MM_flag) MM_rsUser.ActiveConnection = MM_login_STRING MM_rsUser.Source = "SELECT username, password" If MM_fldUserAuthorization <> "" Then MM_rsUser.Source = MM_rsUser.Source & "," & MM_fldUserAuthorization MM_rsUser.Source = MM_rsUser.Source & " FROM login WHERE username='" & Replace(MM_valUsername,"'","''") &"' AND password='" & Replace(Request.Form("pass"),"'","''") & "'" MM_rsUser.CursorType = 0 MM_rsUser.CursorLocation = 2 MM_rsUser.LockType = 3 MM_rsUser.Open If Not MM_rsUser.EOF Or Not MM_rsUser.BOF Then ' username and password match - this is a valid user Session("MM_Username") = MM_valUsername If (MM_fldUserAuthorization <> "") Then Session("MM_UserAuthorization") = CStr(MM_rsUser.Fields.Item(MM_fldUserAuthorization).Value) Else Session("MM_UserAuthorization") = "" End If if CStr(Request.QueryString("accessdenied")) <> "" And false Then MM_redirectLoginSuccess = Request.QueryString("accessdenied") End If MM_rsUser.Close Response.Redirect(MM_redirectLoginSuccess) End If MM_rsUser.Close Response.Redirect(MM_redirectLoginFailed) End If %> 欢迎您来到北京儿童网

 
 

会员功能

进入会员区

 

 

 
 
 

 
 
 
 
高参站点
违章查询
雅虎电邮
驱动之家
公交查询

百度MP3

校友录

神奇贴图

更多

 
 
 

北京儿童网论坛
劲松第一幼儿园论坛
棉花胡同幼儿园论坛
北京军区政治部幼儿园论坛
惠新里幼儿园论坛
 
 
 

梦之苑数码影像工作室

 

 

 

 
设为首页 加入收藏 联系我们
本公司针对幼儿园等幼教系统客户新推出嵌入式多媒体信息交互共享平台,欢迎浏览、体验、咨询!!!

按下列方法观看远程监控

远程视频监控系统

全中文界面,操作简单,可在IE上授权单画面浏览具有网络功
能,授权客户可通过局域网和互联网分控。可输入1-24路视
频,确保音视频实时同步采用H.264压缩技术,图象清晰硬盘
空间占用小于100MB/路.小时,并可调节,具有强大的报警联
动功能。

接送保全系统

智能非触摸式(RFID)卡
数字拍照识别功能

求救报警系统

安全求救报警系统
防盗报警系统
周界报警系统
紧急求救报警系统
无线防盗报警器
语音电话拨号报警器

 

   

制作:北京市行政服务中心-标旗世纪       地址: 北京市崇文区崇文门外新怡商务楼B座12层   

联系电话:010-67086912-841         E-mail  bj61sc@sina.com

  最佳浏览方式:IE5.5以上浏览器 800X600分辨率

信息产业部备案序号:京ICP备05006704

<% Recordset1.Close() Set Recordset1 = Nothing %>