| "
' This loop formats the string for SQL
For i = 1 to Request.Form("insertstring").Count
If i <> highNum Then
str = str&"'" & Request.Form("insertstring")(i)&"', "
Else
str = str&"'" & Request.Form("insertstring")(i)&"'"
End If
Next
Response.Write " |
"
Response.Write ""
Response.Write ""
' Form the SQL string
sql = sql &table& " ("&fldStr&") VALUES (" &str& ")"
' Uncomment to show the string being passed to SQL
' Response.Write sql
' Execute the SQL string
Set rsData = dbc.Execute(sql)
Response.Write ""
Response.Write "