肯定不是了。
你去好好了解一下asp吧

解决方案 »

  1.   

    有没有直接用rsobj.addnew,rsobj.delete直接实现的?当然有
      

  2.   

    可以直接用rsobj.addnew,rsobj.delete直接实现
    但你为什么不用SQL语句呢
      

  3.   

    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="../../../Connections/conn.asp" -->
    <%
      dim strsql,idno
      idno=request("idno")
      strsql="update zdwy.newsindex set ntname='"&request("ntname")&_
      "',content='"&request("content")&"',statsno='"&request("statsno")&_
      "',specno='"&request("specno")&"'where idno='"&trim(idno)&"'"
      set cm1 = Server.CreateObject("ADODB.Command")
      cm1.ActiveConnection = MM_conn_STRING
      cm1.CommandText = strsql
      cm1.CommandType = 1
      cm1.CommandTimeout = 0
      cm1.Prepared = true
      cm1.Execute()
      cm1.ActiveConnection.Close
      set cm1=nothing
      response.redirect "news.asp"
    %>直接用ADODB.Command对象不好吗?