Re: What happened to my code



Instead of ...

customarray[i] = "'" + <%=rs("name")%> + "'";

use ...

customarray[i] = "'<%=rs("name")%>'";

Graham
.