<% '用于从数据库中获取数据的sql语句 set rs=server.createobject("adodb.recordset") dim str str=request.Form("content") str=replace(str," ","&加几个字好不让空格执行nbsp;") str=replace(str,vbcrlf,"<br />") sql="update notes set 内容='"&str&"' where id=2" conn.Execute(sql) %> 精华在于 str=replace(str," ","&加几个字好不让空格执行nbsp;") str=replace(str,vbcrlf,"<br />")//此代码的含义是替换为系统可识别的回车和空格 他在数据库操作以前把提交值做相应的替换处理。
|