rs.open"select * from news,article where news.id="&取值&" and article.id="&取值&"“,conn,3,3
if rs.eof then
response.write"没有找到NEWS.ID和ARTICLE.id相同的数据"
else
rs.("news.content")=CONTENT的取值
rs.("article.content")=CONTENT的取值
rs.update
不记得这样行不行,你可以试试。
conn.execute("update news,article set news.content="&content的取值&" and article.content="&content的取值&" news.id="&取值&" and article.id="&取值&"")
可以考虑修改的时候,同时UPDATE两个表.