- 1. 都市賽車6 (Asphalt 6)for Android v3.1.6 最...
- 2. 免費(fèi)ASP論壇程序Web Wiz Forums v9.71 英文版
- 3. 0323版 (卡巴斯基反病毒)病毒庫 Kaspersky Anti-Vi...
- 4. 混淆代碼從而保護(hù)知識(shí)產(chǎn)權(quán)ASP混天綾 V 0.96
- 5. 精通ASP.NET網(wǎng)絡(luò)編程 電子書
- 6. 卡巴斯基(Kaspersky)2009 KAV v8.0.0.506 Final 官...
- 7. ASP代碼加密工具 10.0 英文版 Build 008
- 8. ASP代碼加密工具 10.0 中文旗艦版
- 9. 深度學(xué)習(xí)文章管理系統(tǒng)(自動(dòng)生成asp代碼) V0.05綠色...
- 10. 輕松學(xué)會(huì)ASP V1.0 綠色中文版
教你利用ASP對(duì)參數(shù)是否為空的判斷方法
作者: 來源: 發(fā)布時(shí)間:2011-6-4 9:22:23 點(diǎn)擊:
本文提供大家分享學(xué)習(xí)的是利用ASP對(duì)參數(shù)是否為空的判斷,然而輸入的參數(shù)類型不同,判斷的方法也就會(huì)不一樣了,那么如何正確的判斷參數(shù)是否為空呢,接下來讓我們一起學(xué)習(xí)一下吧。
具體的請看下文所示:
<%
'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
%>
Example Usage
<%
If IsBlank(Session("username"))Then
response.redirect("LoginFail.htm")
End If
%>
<%
'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
%>
Example Usage
<%
If IsBlank(Session("username"))Then
response.redirect("LoginFail.htm")
End If
%>
[收藏此文章]
- 1. 教你編寫安全的ASP代碼
- 2. ASP程序應(yīng)用之模板采用的簡單教程
- 3. 關(guān)于ASP中大字段在Form中Post出錯(cuò)的解析
- 4. 關(guān)于在ASP程序頁面中插入excel文件的實(shí)例代碼分享
- 5. ASP程序?qū)崿F(xiàn)自動(dòng)采集程序及入庫的實(shí)例代碼分享
- 6. ASP一些錯(cuò)誤代碼的解釋說明
- 7. 關(guān)于ASP控制圖片顯示大小的實(shí)例代碼分享
- 8. ASP中類型轉(zhuǎn)換函數(shù)的介紹說明
- 9. ASP中定義數(shù)組方法分享
- 10. 關(guān)于ASP組件上傳的三種機(jī)制