This is the entire chuck of my code. (well really there was alot more but after alot of debuging i boiled it down to this).
I always get this error message
Error Type:
Response object, ASP 0106 (0x80020005)
An unhandled data type was encountered.
/test.asp
also i have tryed this
gets me
Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch
/test.asp, line 5
gets me
Error Type:
Microsoft VBScript runtime (0x800A0009)
Subscript out of range
/test.asp, line 5
Please Im about to give up on asp all together. What is the correct way to do a split Karl Pietri
lordhuh.pota.to
Code:
<%
const str1="hello every body how are you today"
const str2=" "
dim str3
str3=split(str1,str2)
response.write str3
%>
I always get this error message
Error Type:
Response object, ASP 0106 (0x80020005)
An unhandled data type was encountered.
/test.asp
also i have tryed this
Code:
<%
const str1="hello every body how are you today"
const str2=" "
dim str3()
str3=split(str1,str2)
response.write str3
%>
gets me
Error Type:
Microsoft VBScript runtime (0x800A000D)
Type mismatch
/test.asp, line 5
Code:
<%
const str1="hello every body how are you today"
const str2=" "
dim str3()
str3()=split(str1,str2)
response.write str3
%>
gets me
Error Type:
Microsoft VBScript runtime (0x800A0009)
Subscript out of range
/test.asp, line 5
Please Im about to give up on asp all together. What is the correct way to do a split Karl Pietri
lordhuh.pota.to