If instr(Request("id")," ")>0 or instr(Request("id"),"'")>0 then response.redirect "index.asp" |
InStr([start, ]string1, string2[, compare]) |
參數 | 描述 |
start | 可選。數值表達式,用於設定每次搜尋的開始位置。如果省略,將從第一個字元的位置開始搜尋。如果start 包含Null,則會發生錯誤。如果已指定compare,則必須要有start 參數。 |
String1 | 必選。接受搜尋的字串表達式。 |
String2 | 必選。要搜尋的字串表達式。 |
Compare | 可選。指示在計算子字串時所使用的比較類型的數值。有關數值,請參閱"設定"部分。如果省略,將執行二進位比較。 compare 參數可以有以下值: 常數值描述 vbBinaryCompare 0 執行二進位比較。 vbTextCompare 1 執行文字比較。 |
Dim SearchString, SearchChar, MyPos SearchString ="XXpXXpXXPXXP" ' 要搜尋的字串。 SearchChar = "P" ' 搜尋"P"。 MyPos = Instr(4, SearchString, SearchChar, 1) '文字比較從第四個字元開始傳回6。 MyPos = Instr(1, SearchString, SearchChar, 0) '二進位比較從第1個字元開始傳回9。 MyPos = Instr(SearchString, SearchChar) ' 回傳9。 ' 預設為二進位比較(最後一個參數省略)。 MyPos = Instr(1, SearchString, "W") ' 二進位比較從第1個字元開始傳回0 (沒有找到"W")。 |
if instr(Request("id")," ")>0 或 instr(Request("id"),"'")>0 then |