顶。
有个朋友告诉我这个答案:
将<td><%=rs("text")%></td>
改为<td><%=Server.HTMLEncode(rs("text"))%></td>但是我试过了,不行呀,怎么办???是不是哪里犯了小错误呀??

解决方案 »

  1.   

    我的答案绝对是准确是:
     因为 rs("text") isnull  或 isempty 值。
    你应该判断下。在
    if not isnull(rs("text")) and not isempty(rs("text")) then 
    response.write server.htmlencode(rs("text"))
    else
    response.write "No Match"
    end if 
      

  2.   

    终于成功了,非常感谢您的帮忙,非常非常感谢。
    但还有一个问题:
    isnull和isempty是什么意思呀???请兄弟多多帮忙!!!!!!!!!!!
      

  3.   

    顶.isnull和isempty是什么意思呀???请兄弟多多帮忙!!!!!!!!!!! 
      

  4.   

    isnull  空值,不是0,像个黑洞,什么字答跟到它一块都会变成null值
    empty 嘛,就是对象没有初始化的状态