- 1. 都市赛车6 (Asphalt 6)for Android v3.1.6 最...
- 2. 免费ASP论坛程序Web Wiz Forums v9.71 英文版
- 3. 0323版 (卡巴斯基反病毒)病毒库 Kaspersky Anti-Vi...
- 4. 混淆代码从而保护知识产权ASP混天绫 V 0.96
- 5. 精通ASP.NET网络编程 电子书
- 6. 卡巴斯基(Kaspersky)2009 KAV v8.0.0.506 Final 官...
- 7. ASP代码加密工具 10.0 英文版 Build 008
- 8. ASP代码加密工具 10.0 中文旗舰版
- 9. 深度学习文章管理系统(自动生成asp代码) V0.05绿色...
- 10. 轻松学会ASP V1.0 绿色中文版
教你利用ASP对参数是否为空的判断方法
作者: 来源: 发布时间:2011-6-4 9:22:23 点击:
本文提供大家分享学习的是利用ASP对参数是否为空的判断,然而输入的参数类型不同,判断的方法也就会不一样了,那么如何正确的判断参数是否为空呢,接下来让我们一起学习一下吧。
具体的请看下文所示:
<%
'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
%>
上一篇:编写留言本需要i注意到的三点(适用PHP和ASP) 下一篇: 一小时内解决掉ASP
[收藏此文章]