vbscript prüfen, ob die Zeichenfolge leer ist
Dim strText = ""
'both of these return true
If Len(strText) = 0 Then
'empty
End If
If strText = "" Then
'empty
End If
PvT_Shifty