免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1990 | 回复: 5
打印 上一主题 下一主题

急呀!GGJJ帮帮我 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-03-23 18:02 |只看该作者 |倒序浏览
计数器程序该如何写啊!急用,谢谢帮帮小妹吧!
我是新手

论坛徽章:
0
2 [报告]
发表于 2004-03-24 11:58 |只看该作者

急呀!GGJJ帮帮我

计数器?
还计算器?

论坛徽章:
0
3 [报告]
发表于 2004-03-24 11:58 |只看该作者

急呀!GGJJ帮帮我

计数器?
还计算器?

论坛徽章:
0
4 [报告]
发表于 2004-03-25 13:44 |只看该作者

急呀!GGJJ帮帮我

计数器,大哥帮帮忙!

论坛徽章:
0
5 [报告]
发表于 2004-03-25 14:16 |只看该作者

急呀!GGJJ帮帮我

i++

论坛徽章:
0
6 [报告]
发表于 2004-03-25 16:06 |只看该作者

急呀!GGJJ帮帮我

<%
Response.Buffer = True
Response.ExpiresAbsolute = Now() - 1
Response.Expires = 0
Response.CacheControl = "no-cache"
%>;
<%
if len(trim(session("HR_userID"))>;0 then
        response.write "<script>;if (window.confirm('是否要重新登录?'))"
        response.write "{window.location.href='logoff.asp?off=1'}"
        response.write "else"
        response.write "{window.location.href='logoff.asp?off=0'}"
        response.write "</script>;"
        response.end
end if

'登录
dim userName,oUser,oRs
dim HR_userName,HR_userID,HR_btrtl,HR_btext,HR_bAdmin,iCount
dim HR_user,HR_man,HR_admin,SYS_admin

dim bMan,bAdmin,bSysAdmin
bMan=false
bAdmin=false
bSysAdmin=false

HR_user=3
HR_man=2
HR_admin=1
SYS_admin=0


userName=UCASE(Request.ServerVariables("LOGON_USER")
if userName="HDQSMSG01\HR_ADMIN" then userName="HDQSMSG01\HUANGYH" end if
'if userName="HDQSMSG01\HR_ADMIN" then userName="HDQSMSG01\LIUHH" end if
' if userName="HDQSMSG01\HR_ADMIN" then userName="HDQSMSG01\LIS" end if



'测试用
'userName="HDQSMSG01\XUWEI"
'userName="HDQSMSG01\LIS"
'userName="unionnet\somedayxp" '李爽
'userName="unionnet\wuhao" '一般员工
'userName="unionnet\ei" '人事子范围管理员
'userName="unionnet\liuyong" '专管员
'userName="WZUSMSG01\YEWW"
'userName="DLNSMSG\JIANGM"

'userName="HDQSMSG01\HUANGYH"
'userName="HDQSMSG01\ZHANGYY2"

session("HR_LOGONUSER"=userName
response.cookies("HR_LOGONUSER"=userName

'跳转至首页
function gotoIndex(sFolder)
        gotoIndex= sFolder & "/" & "index.asp"
end function

function raiseError()
        response.redirect "error.asp"
end function


function drawSelectTable(bMan,bAdmin,bSysAdmin,userName)
        if not bMan and not bAdmin and not bSysAdmin then
                'response.write "<script>;alert('监测信息:emp/index.asp')</script>;"
                'response.write "<script>;window.location.href='emp/index.asp'</script>;"
                response.redirect "emp/index.asp"
                response.end
        end if
        response.write "<table border=0 height=75% align=center cellpadding=0 cellspacing=0>;<tr>;<td width=100% valign=middle>;"
        response.write "<div align=center valign=middle>;<table style={font-size:9pt} cellpadding=2 cellspacing=2>;"
        response.write "<tr>;"
        response.write "<td>;欢迎你<font color=red>;" & userName &  "</font>;,请先选择您的身份</td>;"
        response.write "</tr>;"
        response.write "<tr>;"
        response.write "<td bgcolor='#E8F2FF' align=center>;<a href=" & gotoIndex("emp" & ">;普通用户</a>;</td>;"
        response.write "</tr>;"
        if bMan then
                response.write "<tr>;"
                response.write "<td bgcolor='#F4F9FF' align=center>;<a href=" & gotoIndex("hr_man" & ">;人事专员</a>;</td>;"
                response.write "</tr>;"
        end if
        if bAdmin then
                response.write "<tr>;"
                response.write "<td bgcolor='#E8F2FF' align=center>;<a href=" & gotoIndex("hr_admin" & ">;高级管理员</a>;</td>;"
                response.write "</tr>;"
        end if
        if bSysAdmin then
                response.write "<tr>;"
                response.write "<td bgcolor='#F4F9FF' align=center>;<a href=" & gotoIndex("sys_admin" & ">;系统管理员</a>;</td>;"
                response.write "</tr>;"
        end if
        response.write "</table>;</div>;"
        response.write "</td>;</tr>;</table>;"
end function


if len(trim(userName))>;0 then
        'response.write "<script>; alert('" & userName & "')</script>;"
        dim sTmp
        dim sUserName
        iCount=0

        Set oUser=Server.CreateObject("UniHrOnLoc.CLogin"
        set oRs=oUser.userLogin(userName)
        iCount=oRs.recordcount
        if iCount=0 then raiseError

        if iCount=1 then
                sUserName=ors.fields(1)
                if HR_man=cint(oRs.fields() then
                        bMan=true
                end if
                if HR_admin=cint(oRs.fields(7)) then
                        bAdmin=true
                end if
                if SYS_admin=cint(oRs.fields(6)) then
                        bSysAdmin=true
                end if
        else
                do while not ors.eof
                        sUserName=ors.fields(1)
                        if HR_man=cint(oRs.fields() then
                                bMan=true
                        end if
                        if HR_admin=cint(oRs.fields(7)) then
                                bAdmin=true
                        end if
                        if SYS_admin=cint(oRs.fields(6)) then
                                bSysAdmin=true
                        end if
                        oRs.movenext
                loop
        end if
        oRs.close
        set oRs=nothing
        call drawSelectTable(bMan,bAdmin,bSysAdmin,sUserName)
else
        raiseError
end if

%>;

<script language="javascript" src="txhjsq.asp">;</script>;
里面有一段,自己找吧!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP