A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

今天在玩一个登陆界面时,title和下拉列表中调用的数据库数据文字出现了乱码,不知道怎么回事儿……
数据库操作问题,还是字体编码问题?怎么改呢?
求教!
<!--#include file="inc/config.asp"-->
<!--#include file="inc/conn.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>在线考试系统</title>
</head>
<body>
<form action="index2.asp" method="post"><table width="1000"  height="666"border="0"  background="images/login4.jpg" align="center" cellpadding="0" cellspacing="0">
<tr height="150"><td height="310" colspan="2"></td></tr>
  <tr>
    <td height="46" colspan="2" align="center" valign="middle"><h2><strong>在线考试登陆系统</strong></h2></td>
  </tr>
  <tr>
    <td width="389" height="0" align="right"><strong>班级:</strong></td>
    <td width="611" height="35"><%
set rsclass=server.createobject("adodb.recordset")
sqlclass = "select * from Sclass"
  rsclass.open sqlclass,conn,1,1
if rsclass.eof and rsclass.bof then
  response.write "请先添加班级"
else
%>
<select name="sclass" id="sclass" onselect="show()">
  <option value="">请选择班级</option>
  <%
   dim selclass
   selclass=rsclass("Cname")
   do while not rsclass.eof
  %>
  <option value="<%=trim(rsclass("Cname"))%>"><%=trim(rsclass("Cname"))%></option>
  <%
   rsclass.movenext
   loop
   end if
   rsclass.close
  %>
</select></td>
  </tr>
  <tr>
    <td width="389" height="40" align="right"><strong>姓名:</strong></td>
    <td width="611" height="35"><label>
      <input type="text" name="textfield" id="textfield">
    </label></td>
  </tr>
  <tr>
    <td width="389" height="40" align="right"><strong>学号:</strong></td>
    <td width="611" height="35"><label>
      <input type="text" name="textfield2" id="textfield2">
    </label></td>
  </tr>
  <tr>
    <td height="40" align="center"></td>
    <td height="35" align="left"><input type="submit" name="button" id="button" value="登陆" /></td>
  </tr>
  <tr>
    <td height="0" colspan="2" align="center" valign="bottom"></td>
    </tr>
</table>
</form>
</body>
</html>

5 个回复

倒序浏览
哥们 你这是什么啊,数据库操作,控制流程全部在jsp里面实现?  这是代码吗?  这样的代码没有一点可读性,jsp页面的规范是尽量不使用java脚本代码,而是全部通过el表达式以及jstl标签来实现,至于逻辑控制是交由servlet来处理,再至于对数据库的操作是交给DAO来处理的啊,你这个代码真的半点可读性都没有
回复 使用道具 举报
数据库的编码格式和你设置的编码格式不一致导致的乱码。。。
回复 使用道具 举报
一般web出现乱码,编码方式就用gbk。
回复 使用道具 举报
杨波 发表于 2012-3-14 19:42
一般web出现乱码,编码方式就用gbk。

3ku  ,,,,哦了!
回复 使用道具 举报
lucky_xingxing 发表于 2012-3-14 19:01
哥们 你这是什么啊,数据库操作,控制流程全部在jsp里面实现?  这是代码吗?  这样的代码没有一点可读性, ...

恩,我只是在测试一个功能,成功了就删了,以后写会规范的,只是,你没有解决问题……
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马