ASP判斷數(shù)據(jù)庫值是否為空的通用函數(shù)_ASP教程

      編輯Tag賺U幣
      教程Tag:暫無Tag,歡迎添加,賺取U幣!

      推薦: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教程/更新時(shí)間:2012-06-21
      相關(guān)ASP教程