主题: 编码问题 |
作者: 大脚, 发布日期: 2006-11-03 13:01:33, 浏览数: 8460 |
在编辑框中一切正常
预览也一切正常 提交之后就变成乱码 下面是我编辑页面的代码 <!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=utf-8" /> <title>添加</title> </head> <body> <form name="form1" method="post" action="test.asp" onsubmit="javascript:KindSubmit();"> <table border="0"> <tr> <td width="15%"></td> <td width="85%"> <div style="font-size:12px;margin-bottom:5px;"> <a href="./demo.html">完整模式</a> <a href="./simple_demo.html">简单模式</a> </div> <input type="hidden" name="af_description" value=""> <script type="text/javascript" src="./KindEditor.js"></script> <script type="text/javascript"> var editor = new KindEditor("editor"); editor.hiddenName = "af_description"; editor.editorWidth = "700px"; editor.editorHeight = "400px"; editor.show(); function KindSubmit() { editor.data(); } </script> <input type="submit" name="Submit" value="提交"> <input type="reset" name="qx" value="重置"> </td> </tr> </table> </form> </body> </html> 下面是我处理页面的代码 <!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> <title>结果</title> </head> <body> <%=request.Form("af_description")%> </body> </html> 麻烦帮我看看什么问题? |
作者: 大脚, 发布日期: 2006-11-03 13:15:52 |
我刚才试了一下
我把预览出来的页面的源代码复制下来,粘贴到另一个页面再打开都是乱码,而预览就没问题,郁闷。。。 |
回复 |