title=request("title")
tmpstr=Split(title,"|")
For I=0 To Ubound(tmpstr)
strsql="insert into tags(tag_name) values('"&tmpstr(I)&"')"
db.Execute strsql
Next
title=request("title")
tmpstr=Split(title,"|")
For I=0 To Ubound(tmpstr)
strsql="insert into tags(tag_name) values('"&tmpstr(I)&"')"
db.Execute strsql
Next