set rs=server.createobject("adodb.recordset")
rs.open "select plan_comment from work_plan",conn,3,1
这样就可以了。

解决方案 »

  1.   

    我昨天就遇到了同样的问题。
    但是非常奇怪的是,如果你用一个临时变量把记录取出来,再写就可以写出来了。
    比如tmpstr=rs("plan_comment")
    response.write(tmpstr)就可以显示出来。
    而用response.write(rs("plan_comment"))就不行。
      

  2.   

    select plan_comment from work_plan 这段输出有问题吗你试一试!!!!
      

  3.   

    try this one:
    plan_comment = rs.fields("plan_comment").getChunk("100000") 
      

  4.   

    response.write rs("plan_comment")
    应该可以呀