月 [下月] [上月]
MSN Online Status Indicator
QQ:你的号码 转载:http://dev.csdn.net/article/40/article/40/40003.shtm
用户操作
[留言]  [发消息]  [加为好友] 
订阅我的博客
XML聚合    FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
zhijianshadog的公告
很喜欢和大家交朋友! 名字:倦猫 出生:中宁 居住地:银川 专业:计算机应用 不过,现在已经上班了 我现在才知道工作很 不容易,也很辛苦, 也明白了父母 为什么不给我 买洋娃娃 <!-- Blog日历表开始 --> <script language="javascript"> var diarydays="<2004-08-05><2004-08-09><2004-08-12><2004-08-17><2004-08-19><2004-07-14><2004-07-13><2004-07-08><2004-07-05><2004-07-04><2004-07-03><2004-06-27><2004-06-26><2004-06-25>"; </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <style> .calendarBigBorder { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; text-decoration: none; width: 170; background-color: #FFFFFF; font-size: 9pt;border:1px dotted #999; } .calendarTd { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #000000; background-color: #eeeeee; height: 18px; width: 11%; text-align: center;} .calendarMInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; text-decoration: none; background-color: #FFFFFF; height: 15px; border: 1px solid #666666; width: 19px; color: #0099FF;} .calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 15px; width: 34px; border: 1px solid #666666;} .calendarMonthTitle { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; height: 24px; text-align: center; color: #333333; text-decoration: none; background-color: #eeeeee; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-bottom-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;} .calendarNow { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: bold; color: #000000; background-color: #C0C9D3; height: 18px; text-align: center;} .calendarDaySat { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarDaySun { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} .calendarLink { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; color: #333333; text-decoration: none; background-color: #E7E7F6; text-align: center; height: 18px;} .categoryTxt { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; line-height: 23px; color: #333333; text-decoration: none;} .categoryTable { border-right-width: 1px; border-bottom-width: 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: none; border-right-color: #000000; border-bottom-color: #000000; border-top-width: 1px; border-top-style: solid; border-top-color: #71b99c;} </style> <SCRIPT LANGUAGE="JavaScript"> var months = new Array("一", "二", "三","四", "五", "六", "七", "八", "九","十", "十一", "十二"); var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31,30, 31, 30, 31); var days = new Array("日","一", "二", "三","四", "五", "六"); var classTemp; var calendarHover="calendarHover"; var today=new getToday(); var year=today.year; var month=today.month; var newCal; //得到某月天数 function getDays(month, year) { if (1 == month) return ((0 == year % 4) && (0 != (year % 100))) ||(0 == year % 400) ? 29 : 28; else return daysInMonth[month]; } //得到当天时间信息 function getToday() { this.now = new Date(); this.year = this.now.getFullYear(); this.month = this.now.getMonth(); this.day = this.now.getDate(); } //生成日历 function Calendar() { newCal = new Date(year,month,1); //当前月的第一天 today = new getToday(); var day = -1; //用来判断日历中是否为当天 var startDay = newCal.getDay(); //当月开始时间 var endDay=getDays(newCal.getMonth(), newCal.getFullYear());//当月结束时间 var daily = 0; //用来生成日历中的天数值 if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth())) day = today.day; var caltable = document.all.caltable.tBodies.calendar; //得到日历表格的集合 var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); //得到当月天数 //生成日历 for (var intWeek = 0; intWeek < caltable.rows.length;intWeek++) for (var intDay = 0;intDay < caltable.rows[intWeek].cells.length;intDay++) { var cell = caltable.rows[intWeek].cells[intDay]; //得到单元袼 //生成字符串用于判断当天是否有日志 var montemp=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); if ((intDay == startDay) && (0 == daily)){ daily = 1;} var daytemp=daily<10?("0"+daily):(daily); var d="<"+newCal.getFullYear()+"-"+montemp+"-"+daytemp+">"; //选择样式 if(day==daily) cell.className="calendarNow"; else if(diarydays.indexOf(d)!=-1) cell.className="calendarLink"; else if(intDay==6) cell.className = "calendarDaySat"; else if (intDay==0) cell.className ="calendarDaySun"; else cell.className="calendarTd"; //生成值 if ((daily > 0) && (daily <= intDaysInMonth)) { cell.innerText = daily; daily++; } else cell.innerText = ""; } document.all.year.value=year; document.all.month.value=month+1; } function subMonth() { if ((month-1)<0) { month=11; year=year-1; } else { month=month-1; } Calendar(); } function addMonth() { if((month+1)>11) { month=0; year=year+1; } else { month=month+1; } Calendar(); } //得到响应事件 function getDiary() { var mon=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); var day=event.srcElement.innerText<10?("0"+event.srcElement.innerText):(event.srcElement.innerText); var d="<"+newCal.getFullYear()+"-"+mon+"-"+day+">"; if ("TD" == event.srcElement.tagName) if (("" != event.srcElement.innerText)&&(diarydays.indexOf(d)!=-1)) { diary.location="/foxmail/archive/"+newCal.getFullYear()+"/"+mon+"/"+day+".aspx"; window.location.href = diary.location; } } function setDate() { if (document.all.month.value<1||document.all.month.value>12) { alert("月的有效范围在1-12之间!"); return; } year=Math.ceil(document.all.year.value); month=Math.ceil(document.all.month.value-1); Calendar(); } </SCRIPT> <table border="0" cellpadding="0" cellspacing="1" class="calendarBigBorder" id="caltable" width="200"> <thead> <tr align="center" valign="middle"> <td colspan="7" class="calendarMonthTitle"> <input name="year" type="text" class="calendarYInput" size="3" maxlength="4" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')">年 <input name="month" type="text" class="calendarMInput" size="1" maxlength="2" onkeydown="if (event.keyCode==13){setDate()}" onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onpaste="this.value=this.value.replace(/[^0-9]/g,'')">月 [<a onClick="addMonth()" href="javascript:;">下月</a>] [<a onClick="subMonth()" href="javascript:;">上月</a>]</td> </tr> <tr align="center" valign="middle"> <SCRIPT LANGUAGE="JavaScript"> document.write("<TD class=calendarDaySun id=diary>" + days[0] + "</TD>"); for (var intLoop = 1; intLoop < days.length-1; intLoop++) document.write("<TD class=calendarTd id=diary>" + days[intLoop] + "</TD>"); document.write("<TD class=calendarDaySat id=diary>" + days[intLoop] + "</TD>"); </SCRIPT> </TR> </thead> <TBODY border=1 cellspacing="0" cellpadding="0" ID="calendar" ALIGN=CENTER ONCLICK="getDiary()" onmouseup=document.selection.empty() oncontextmenu="return false" onselectstart="return false" ondragstart="return false" onbeforecopy="return false" oncopy=document.selection.empty() onselect=document.selection.empty()> <SCRIPT LANGUAGE="JavaScript"> for (var intWeeks = 0; intWeeks < 6; intWeeks++) { document.write("<TR style='cursor:hand'>"); for (var intDays = 0; intDays < days.length;intDays++) document.write("<TD class=calendarTd onMouseover='{classTemp=this.className;this.className=calendarHover}' onMouseOut='this.className=classTemp'></TD>"); document.write("</TR>"); } </SCRIPT> </tbody> </table> <script LANGUAGE="JavaScript"> Calendar(); </script> <!-- Blog日历表结束 --> <!-- 天气预报 注意这里涉及到编码问题,%B1%B1%BE%A9为城市代码,可用百度查一下,比如输入北京,地址栏中就会出现%B1%B1%BE%字样的内容--> <center><iframe width=157 height=240 frameborder=0 scrolling=NO src='http://appnews.qq.com/cgi-bin/news_qq_search?city=%D2%F8%B4%A8'></iframe></center> <!-- QQ在线状态显示 --> </A><br>QQ:76334425
文章分类
    我的另外一个BLOG
    中国丫头(RSS)
    冯斌,长沙,23(RSS)
    我的闪客帝国BLOG(RSS)
    存档

    原创  Asp 建站常用函数 收藏

    Asp 建站常用函数 我会随时更新
    作者:李云海 E-Mail:yun_hai@hotmail.com
    欢迎转载,转载请保证文章完成性和注明出处 谢谢您的合作。

    <%
    'Asp 建站常用函数 我会随时更新
    '
    作者:李云海 E-Mail:yun_hai@hotmail.com
    '
    欢迎转载,转载请保证文章完成性和注明出处 谢谢您的合作。


    ' *----------------------------------------------------------------------------
    '
    * 函数:GetExtend
    '
    * 描述:获得文件扩展名
    '
    * 参数:文件全名
    '
    * 返回:文件扩展名
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function GetExtend(filename)
    dim tmp
    if filename<>"" then
    tmp
    =mid(filename,instrrev(filename,".")+1,len(filename)-instrrev(filename,"."))
    tmp
    =LCase(tmp)
    if instr(1,tmp,"asp")>0 or instr(1,tmp,"php")>0 or instr(1,tmp,"php3")>0 or instr(1,tmp,"aspx")>0 then
    getextend
    ="txt"
    else
    getextend
    =tmp
    end if
    else
    getextend
    =""
    end if
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:CheckIn
    '
    * 描述:检测参数是否有SQL危险字符
    '
    * 参数:str要检测的数据
    '
    * 返回:FALSE:安全 TRUE:不安全
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function CheckIn(str)
    if instr(1,str,chr(39))>0 or instr(1,str,chr(34))>0 or instr(1,str,chr(59))>0 then
    CheckIn
    =true
    else
    CheckIn
    =false
    end if
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:alertm
    '
    * 描述:在客户端显示消息框
    '
    * 参数:message:要显示的信息
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    Sub alertm(message)
    message
    = replace(message,"'","'")
    Response.Write (
    "<script>alert('" & message & "')</script>")
    End Sub

    ' *----------------------------------------------------------------------------
    '
    * 函数:GoBack
    '
    * 描述:在客户端返回上一页
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    Sub GoBack()
    Response.write (
    "<script>history.go(-1)</script>")
    End Sub

    ' *----------------------------------------------------------------------------
    '
    * 函数:Go
    '
    * 描述:重定向另外的连接
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    Sub Go(url)
    Response.write (
    "<script>location.href('" & url & "')</script>")
    End Sub

    ' *----------------------------------------------------------------------------
    '
    * 函数:GoPage
    '
    * 描述:按指定秒数重定向另外的连接
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    sub GoPage(url,s)
    s
    =s*1000
    Response.Write
    "<SCRIPT LANGUAGE=JavaScript>"
    Response.Write "window.setTimeout("&chr(34)&"window.navigate('"&url&"')"&chr(34)&","&s&")"
    Response.Write "</script>"
    end sub

    ' *----------------------------------------------------------------------------
    '
    * 函数:isInteger
    '
    * 描述:判断数字是否整形
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function isInteger(para)
    on error resume next
    dim str
    dim l,i
    if isNUll(para) then
    isInteger
    =false
    exit function
    end if
    str
    =cstr(para)
    if trim(str)="" then
    isInteger
    =false
    exit function
    end if
    l
    =len(str)
    for i=1 to l
    if mid(str,i,1)>"9" or mid(str,i,1)<"0" then
    isInteger
    =false
    exit function
    end if
    next
    isInteger
    =true
    if err.number<>0 then err.clear
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:HTMLEncode
    '
    * 描述:过滤HTML代码
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function HTMLEncode(fString)
    if not isnull(fString) then
    fString
    = replace(fString, ">", "&gt;")
    fString
    = replace(fString, "<", "&lt;")

    fString
    = Replace(fString, CHR(32), "&nbsp;")
    fString
    = Replace(fString, CHR(9), "&nbsp;")
    fString
    = Replace(fString, CHR(34), "&quot;")
    fString
    = Replace(fString, CHR(39), "&#39;")
    fString
    = Replace(fString, CHR(13), "")
    fString
    = Replace(fString, CHR(10) & CHR(10), "</P><P> ")
    fString
    = Replace(fString, CHR(10), "<BR> ")

    HTMLEncode
    = fString
    end if
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:HTMLcode
    '
    * 描述:过滤表单字符
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function HTMLcode(fString)
    if not isnull(fString) then
    fString
    = Replace(fString, CHR(13), "")
    fString
    = Replace(fString, CHR(10) & CHR(10), "</P><P>")
    fString
    = Replace(fString, CHR(34), "")
    fString
    = Replace(fString, CHR(10), "<BR>")
    HTMLcode
    = fString
    end if
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:HTMLREM
    '
    * 描述:解决过滤
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function HTMLREM(fString)
    if not isnull(fString) then
    fString
    = Replace(fString, CHR(13), "")
    fString
    = Replace(fString, CHR(10) & CHR(10), "")
    fString
    = Replace(fString, CHR(10), "")
    fString
    =ReplaceSpace(fString)
    fString
    =HTMLEncode(fString)
    HTMLREM
    = fString
    end if
    end function

    ' *----------------------------------------------------------------------------
    '
    * 函数:ReplaceSpace
    '
    * 描述:替换所有相连空格为单空格
    '
    * 参数:--
    '
    * 返回:--
    '
    * 作者:
    '
    * 日期:
    '
    *----------------------------------------------------------------------------
    function ReplaceSpace(content)
    content
    =trim(content)
    if content="" then
    replacespace
    =""
    else
    while not instr(1,content," ")=0
    content
    =Replace(content," "," ")
    wend
    replacespace
    =content
    end if
    end function

    rem 将字串处理成sql中语句的一部分之搜索条件

    function StrToSql_or(content,field)
    content
    =trim(content)
    if content="" then
    strtosql_or
    =""
    else
    ' and
    strtosql_or=field & " like '%" & replace(content," ","%' or " & field & " like '%") & "%'"
    end if
    end function

    rem 将字串处理成sql中语句的一部分之搜索日期
    function StrToSql_Date(searchdate,field)
    searchdate
    =clng(searchdate)
    select case searchdate
    case 0
    StrToSql_Date
    =""
    case 1
    StrToSql_Date
    =field & " between '" & dateadd("ww",-1,date()) & "' and '" & date() & "'"
    case 2
    StrToSql_Date
    =field & " between '" & dateadd("m",-1,date()) & "' and '" & date() & "'"
    case 3
    StrToSql_Date
    =field & " between '" & dateadd("q",-1,date()) & "' and '" & date() & "'"
    case 4
    StrToSql_Date
    =field & " between '" & dateadd("yyyy",-1,date()) & "' and '" & date() & "'"
    end select
    end function

    function StrToSql_Date2(field)
    dim date_Previous,date_next
    date_previous
    =dateadd("d",-(Weekday(date(),2)-1),(date() & " 1:00:00"))
    date_next
    =dateadd("d",(7-Weekday(date(),2)),(date() & " 23:59:59"))
    StrToSql_Date2
    =field & " between '" & date_previous & "' and '" & date_next & "'"
    end function

    rem 字符截断
    function Strfix(content,n)
    content
    =trim(content)
    if len(content)>n then
    Strfix
    =left(content,n) & "..."
    else
    Strfix
    =content
    end if
    end function

    rem 字符串处理-截断(新闻)
    function StrNewfix(content)
    content
    =trim(content)
    if len(content)>27 then
    strnewfix
    =left(content,27) & "..."
    else
    strnewfix
    =content
    end if
    end function

    %
    >

    发表于 @ 2005年04月11日 14:50:00 | 评论( loading... ) | 编辑| 举报| 收藏

    旧一篇:IIS常见问题和错误及其解决方案 | 新一篇:IPv6技术原理- [学习]

    • 发表评论
    • 评论内容:
    •  
    Copyright © zhijianshadog
    Powered by CSDN Blog