<%submit=request.form("submit")
if submit="删除" then
sql="delete news1Table where news1Id='"&a&"'" [这里是你点了提交后执行的SQL语句吧?而这里的a根本就没有值了,因为提交后此页面会刷新,你的a=request.QueryString("Id") 就接收不到任何直,应该在表单的action改为action="id=<%=a%>"把a的值赋给id再传回来.而且这个sql语句应为sql="delete from news1Table where news1Id='"&a&"'"]
response.Write(sql)
conn.execute(sql)
response.write""
end if
%>
sql="delete * from news1Table where news1Id='"&a&"'"]
加个星号