怎样用ASP文件把提交的表单内容写入到空间的一个文本文件中?

2024-12-01 05:43:30
推荐回答(1个)
回答1:










<%
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
%>