codice:
<%
Response.Write "maGGico TAG...: " & (Request.Form("tagsname"))
Response.Flush
Dim Arr
Arr = split (Request.Form("tagsname"), " ")
if IsArray(Arr) then
for i = 0 to Ubound(Arr)
Set Command1 = Server.CreateObject ("ADODB.Command")
Command1.ActiveConnection = MM_Conn_STRING
Command1.CommandText = "INSERT INTO Tags (nometag) VALUES ("&Arr(i)&") "
Response.Write "maGGica SQL...: " & Command1.CommandText
Response.Flush
Command1.CommandType = 1
Command1.CommandTimeout = 0
Command1.Prepared = true
Command1.Execute()
Next
end if
%>
e vediamo cosa vale maGGico TAG