ASP常用函数收藏乱七八糟未整理版(46)


    Response.Write ("<script>history.go(-1)</script>")
End Sub

'*******************************************************************
' 重定向另外的连接
'*******************************************************************

Sub Go(url)
    Response.Write ("<script>location.href('" & url & "')</script>")
End Sub

'*******************************************************************
' 指定秒数重定向另外的连接
'*******************************************************************

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

'*******************************************************************
' 判断数字是否整形
'*******************************************************************

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

'*******************************************************************
' 获得文件扩展名
'*******************************************************************

Function GetExtend(filename)
    Dim tmp
    If filename<>"" Then
        tmp = Mid(filename, instrrev(filename, ".") + 1, Len(filename) - instrrev(filename, "."))

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/2946.html