asp+access写入时乱码

<html><head><title>通讯录</title></head><body><tablewidth="100%"border="0"cellspacing="0... <html>
<head>
<title>通讯录</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="5">
<form method="post" action="jr.asp" >
<tr>
<td align="center">姓 名</td>
<td><input name="name" type="text" class="input_text" id="name" size="19"></td>
</tr>
<tr>
<td align="center">号 码</td>
<td><input name="cellphone" type="text" class="input_text" id="cellphone" size="19"></td>
</tr>
<tr>
<td align="center">通信地址</td>
<td><input name="dizhi" type="text" class="input_text" id="dizhi" size="19"></td>
</tr>
<tr>
<td align="center">个人爱好</td>
<td><input name="aihao" type="text" class="input_text" id="aihao" size="19"></td>
</tr>
<tr>
<td align="center">所在大学</td>
<td><input name="univer" type="text" class="input_text" id="univer" size="19"></td>
</tr>
<tr>
<td align="center">备 注</td>
<td><input name="beizhu" type="text" class="input_text" id="beizhu" size="19"></td>
</tr>
<tr>
<td align="center">班 级</td>
<td><input name="class1" type="text" class="input_text" id="class1" size="19"></td>
</tr>
<tr align="center">
<td><input type=submit value="提交">
<input type=reset value="重设">
</td>
</tr>
</form>
</table>
</body>
</html>
jr.asp
<html>
<head>
<title>通讯录</title>
</head>
<body>
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.mappath("data.mdb")
sql="select * from tongxun"
set rs=server.createobject("adodb.recordset")
rs.open sql,conn,1,3
rs.addnew
rs("name")=Request.Form("name")
rs("cellphone")=Request.Form("cellphone")
rs("dizhi")=Request.Form("dizhi")
rs("aihao")=Request.Form("aihao")
rs("univer")=Request.Form("univer")
rs("beizhu")=Request.Form("beizhu")
rs("class1")=Request.Form("class1")
rs.update
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</body>
</html>
但文本框中的中文输入到数据库之后却变成了乱码??数据库是Access.用英文时就不会。请问,这是怎么回事呀???
展开
 我来答
SeeYouInTheSky
2006-11-19 · TA获得超过185个赞
知道答主
回答量:124
采纳率:0%
帮助的人:83.1万
展开全部
可能是毕旁正字符集没标明,试启弊试把这个加在asp开始部分
<手悔%
response.charset="gb2312"
response.contentType="html"
%>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式