<% cMsg = "*** 请登录!***" 'Create database connection Set zhitong = Server.CreateObject("ADODB.Connection") zhitong.ConnectionTimeout = Session("zhitong_ConnectionTimeout") zhitong.ConnectionString = Session("zhitong_ConnectionString") zhitong.Open 'Check the action cUid = Trim(LTrim(Request("cUid"))) If IsNull(cUid) Then cUid = "" End If cPwd = Trim(LTrim(Request("cPwd"))) If IsNull(cPwd) Then cPwd = "" End If cUType = Trim(LTrim(Request("cUType"))) If IsNull(cUType) Or cUType = "" Then cUType = "APPLY" End If cAction = Trim(LTrim(Request("cAction"))) If IsNull(cAction) Or cAction = "" Then cMsg = "" ElseIf cAction = "登录" Then 'Check the login account If cUid = "" Then cMsg = "帐号不能为空!" Else If cUType = "APPLY" Then cSql = "select username,status from userfile where userid = '" + cUid + "' and password = '" + cPwd + "'" Else cSql = "select unitname,status from unitfile where unitid = '" + cUid + "' and password = '" + cPwd + "'" End If Set Result = zhitong.Execute(cSql) If Result.Eof Then Result.Close Set Result = Nothing cMsg = "帐号或密码错误!" Else If IsNull(Result("STATUS")) Or Trim(Result("STATUS")) <> "Y" Then Result.Close Set Result = Nothing cMsg = "此帐号已被禁用!" Else If cUType = "APPLY" Then Session("cUserId") = cUid Session("cUserName") = Trim(Result("username")) Else Session("cUnitId") = cUid Session("cUnitName") = Trim(Result("unitname")) End If Result.Close Set Result = Nothing zhitong.Close Set zhitong = Nothing If cUType = "APPLY" Then Response.Redirect "JobApply/JobApplyList.asp" Else Response.Redirect "JobWant/JobWantList.asp" End If End If End If End If ElseIf cAction = "注册" Then 'new register zhitong.Close Set zhitong = Nothing If cUType = "APPLY" Then Session("cUserId") = "" Session("cUserName") = "" Response.Redirect "JobApply/JobApplyRegNotes.htm" Else Session("cUnitId") = "" Session("cUnitName") = "" Response.Redirect "JobWant/JobWantRegNotes.htm" End If End If %> 智通网上人力资源 www.jobzt.com
站点导航 << 全国高校站点
 

北京 天津 上海 重庆 河北 山西 山东 浙江 江苏 安徽 福建 江西 河南 湖南 湖北 广东
海南 黑龙江 吉林 辽宁 陕西 甘肃 宁夏 青海 新疆 四川 贵州 广西 云南 台湾 香港 其它

北京



[TOP]

天津

上海

上海师范大学

[TOP]

重庆


[TOP]

河北

[TOP]

山西


[TOP]

山东

山东大学 青岛大学

[TOP]

浙江


[TOP]

江苏

[TOP]

安徽

[TOP]

福建

[TOP]

江西


[TOP]

河南


[TOP]

湖南

[TOP]

湖北

广东

[TOP]

海南

[TOP]

黑龙江

[TOP]

吉林

辽宁

[TOP]

陕西

[TOP]

甘肃


[TOP]

宁夏


[TOP]

青海

新疆


[TOP]

四川


[TOP]

贵州


[TOP]

广西


[TOP]

云南

[TOP]

台湾

<BIG5> <BIG5>
<BIG5>
<BIG5>
<BIG5> <BIG5> <BIG5>
[TOP]

香港

[TOP]



智通网上人力资源 * 版权所有
咨询热线:(0769)2457052、2457269 猎头服务热线:(0769)2470266
webmaster:[email protected]
建议采用IE4.0以上版本,800*600分辨率观看此网站。
<% zhitong.Close Set zhitong = Nothing %>