网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 asp制作的日历程序
内容
    纯ASP打造的日历程序,可自行美化,这里仅提供最简单的CSS样式。。。
    <%
    '=================================
    '说明:日历文件
    '=================================
    '取出对应的年月博客日志数据
    '=======================
    Ryear = CInt(request.querystring("year"))
    Rmonth = CInt(request.querystring("month"))
    If Ryear = 0 Or Ryear = NULL Then Ryear = year(now)
    If Rmonth = 0 Or Rmonth = NULL Then Rmonth = month(now)
    nowtime = Ryear&"-"&Rmonth&"-1" '得到本月第一天
    nowyear = year(nowtime) '年份
    nowmonth = month(nowtime) '月份
    nowweekday = weekday(nowtime) - 1 '当前礼拜
    '获取2月天数
    febdays = 28
    If nowyear / 4 = 0 Then febdays = 29
    '获取本月天数
    If nowmonth = 1 then
    monthdays = 31
    ElseIf nowmonth = 2 Then
    monthdays = febdays
    ElseIf nowmonth = 3 Then
    monthdays = 31
    ElseIf nowmonth = 4 Then
    monthdays = 30
    ElseIf nowmonth = 5 Then
    monthdays = 31
    ElseIf nowmonth = 6 Then
    monthdays = 30
    ElseIf nowmonth = 7 Then
    monthdays = 31
    ElseIf nowmonth = 8 Then
    monthdays = 31
    ElseIf nowmonth = 9 Then
    monthdays = 30
    ElseIf nowmonth = 10 Then
    monthdays = 31
    ElseIf nowmonth = 11 Then
    monthdays = 30
    Else
    monthdays = 31
    End If
    calendar = " &lt;&lt;&nbsp;"
    willshowmonthmonth = nowmonth
    If willshowmonthmonth - 1 <= 0 Then willshowmonthmonth = 2
    calendar = calendar & " &lt;&nbsp;"
    If willshowmonthmonth + 1 > 12 Then willshowmonthmonth = 11
    calendar = calendar & " &gt;&nbsp;"
    calendar = calendar & " &gt;&gt;&nbsp;"
    calendar = calendar & "
    "&VBCRLF
    calendar = calendar & " "&VBCRLF
    calendar = calendar & "
    "&nowyear&"-"&nowmonth&"-"&day(now)&"
    日&
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/20 21:01:33