Heya again..
The following line will split your "referrer" column into an array:
ref = Split(rs("referrer"),",")
If you try to use this ref variable without an array number you'll end up with the type mismatch error message.
->
wscript.echo(ref) 'will return...
Hey..
You have to remember that leading zero in the month number :)
according to mrmovie:
---
strMonth = Month(Now)
'add these lines..
if int(strMonth) < 10 then
strMonth = "0" & strMonth
end if
---
that should do it..
Jay
Heya Dave..
Why don't you just use replace functionality..
Ref = replace(rs("referrer"), "," ,"")
Should do the trick
Jay
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.