Terry,
>and here are the lines i have been searching for (i think, havent
>tried it but should be)
>
> if (issimplevalue(arg) and isnumeric(arg)){
> return ToString(arg);
> }
> if (issimplevalue(arg)){
> return '"' & JSStringFormat(ToString(arg)) &
'"';
> }
>
>just comment out the 1st three lines should do the trick....
Just be aware that this could cause you issues in the future when you do
want to try and preserve your data types.
The would think the better option would be to add a flag to your serialize
to treat all simple values as strings.
-Dan