1
我有下面的代碼,我想檢查數組索引3是現有的或沒有,但我總是得到這個錯誤:經典ASP檢查,如果在數組中的元素存在
Microsoft VBScript運行時錯誤「 800a0009'
標超出範圍: '[數:0]'
urlArray=Split(url1,"/")
If (not isNull(urlArray(3))) then
If (urlArray(3)="site") Then
newUrl=urlArray(0) &"/"& urlArray(1) &"/"& urlArray(2) &"/m/" & urlArray(4) & "/" & urlArray(5)
Else
newUrl= url1
End If
Else
newUrl= url1
End If
感謝我用UBound函數來檢查所述陣列具有元件或不:)。 –