ASP判斷數(shù)據(jù)庫值是否為空的通用函數(shù)_ASP教程
推薦:ASP將數(shù)據(jù)庫中的數(shù)據(jù)導(dǎo)出到EXCEL表中ASP實(shí)例代碼,直接將數(shù)據(jù)庫中的數(shù)據(jù)導(dǎo)出到EXCEL電子表中。 !--#include file=../conn.asp-- % dim s,sql,filename,fs,myfile,x Set fs = server.CreateObject(scripting.filesystemobject) '--假設(shè)你想讓生成的EXCEL文件做如下的存放 filename = Server.
由于各種字段屬性不同,判斷字段是否為空的方法也各異.
下面是一個(gè)通用函數(shù),免去了還要看字段類型之苦.
'Check a variable isn't "empty"
Function IsBlank(ByRef TempVar)
'by default, assume it's not blank
IsBlank = False
'now check by variable type
Select Case VarType(TempVar)
'Empty & Null
Case 0, 1
IsBlank = True
'String
Case 8
If Len(TempVar) = 0 Then
IsBlank = True
End If
'Object
Case 9
tmpType = TypeName(TempVar)
If (tmpType = "Nothing") Or (tmpType = "Empty") Then
IsBlank = True
End If
'Array
Case 8192, 8204, 8209
'does it have at least one element?
If UBound(TempVar) = -1 Then
IsBlank = True
End If
End Select
End Function
應(yīng)用實(shí)例:
If IsBlank(rs("upic")) Then
upicurl="/images/nonepic.jpg"
Else
upicurl=rs("upic")
End If
分享:ASP把電話號碼生成圖片的代碼作用:將頁面中的電話號碼生成圖片格式。 % Call Com_CreatValidCode(Request.QueryString(tel)) Public Sub Com_CreatValidCode(pTel) '----------禁止緩存 Response.Expires = 0 Response.AddHeader Pragma,no-cache Response.AddHeader cache-ctro
- asp FSO 讀寫文件本文件實(shí)現(xiàn)代碼
- asp中isNull、isEmpty和空字符串的區(qū)別
- asp獲取用戶真實(shí)IP地址的方法
- asp連接sqlserver數(shù)據(jù)庫實(shí)現(xiàn)代碼
- asp中正則表達(dá)式過濾html代碼函數(shù)
- asp中g(shù)et post提交表單區(qū)別
- 網(wǎng)頁模板:ASP內(nèi)建對象Request
- xmlhttp的open方法使用詳解
- ASP的常用的自定義函數(shù)大全
- asp中用for循環(huán)的一個(gè)小技巧
- eWebEditor v3.8 列目錄
- ASP無組件分頁實(shí)現(xiàn)思路及代碼
- 相關(guān)鏈接:
- 教程說明:
ASP教程-ASP判斷數(shù)據(jù)庫值是否為空的通用函數(shù)。