应该这样吧:"日期\>@日期1@   AND  日期\<@日期2@"

解决方案 »

  1.   

    如果你想把它保存到和页面一致,那么用字符串引号把它括起来,“”而且要把转义符考虑进去,比如你想显示一个路径:那么是"c:\\m\\m.txt"
      

  2.   

    string decodeValue = HttpUtility.HtmlDecode(textArea.Text);然后把decodeValue保存到数据库
      

  3.   

    text1.text=text1.text.replace("&gt;",">")
    text1.text=text1.text.replace("&lt;","<")
    —————————————————————————————————