Does anyone here have experience working under a chilisoft asp environment?
I work on IIS (at work) but I just tried to run one of my scripts on my own host that runs chilisoft and I'm having a hard time getting things working.
My first problem was with regexp but I got that issue solved - it was merely a syntax difference (I think, dont know if the code works, but it compiles heh)
The next problem I've come accrosss is .execute. I use this command a lot to execute sql queries. In the end I had to change them all to rs.open instead
The problem I have now is I'm also using execute to create a string from an array of variable names eg.
Code:
execute("strCode = strCode&"&order(i))
but i get this:
Code:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'execute'
is there a different command in chilisoft to do what i'm doing because I cant get execute to work at all, even with basic strings.