ASP代码调试求助
前几天我调试了一段写入数据库操作的代码,当时是调试成功了,后来我又改了改,虽然能写入数据,但是如果写入的是中文数据的话,显示的就是乱码,写入的是数字的话就正常显示,我不知道是什么原因。各位大侠前辈,还望指点一二,先谢过了! <%
if request.form("name")="" then
response.write "<script>alert('this is wrong!');location='Untitled-2.Asp';</script>"
response.End
end if
set rs=server.createobject("ADODB.Recordset")
sql="select * from words"
rs.open sql,conn,1,3
rs.addnew
rs("name")=request.form("name")
rs("web")=request.form("web")
rs("title")=request.form("title")
rs("words")=request.form("words")
rs("ip")=Request.ServerVariables("REMOTE_ADDR")
rs("date")=FormatDateTime(NOW)
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
Response.Redirect "ceshi.Asp"
%>