<%
if not isempty(request("tijiao")) then
username=request.form("username")
title=request.form("title")
content=request.form("content")
if username="" or title="" then
response.write""
else
sql="insert into(username,title,content) values('"&username&"','"&title&"','"&content&"')"
conn.execute(sql)
response.write""
end if
end if
%>