asp生成html 成乱码
下面是代码:<!--#includefile="../Include/Const.asp"--><!--#includefile="../Include/ConnSite...
下面是代码:
<!--#include file="../Include/Const.asp" -->
<!--#include file="../Include/ConnSiteData.asp" -->
<!--#include file="Admin_htmlconfig.asp"-->
<link rel="stylesheet" href="Images/Admin_style.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<%
if Instr(session("AdminPurview"),"|34,")=0 then
response.write ("<br /><br /><div align=""center""><font style=""color:red; font-size:9pt; "")>您没有管理该模块的权限!</font></div>")
response.end
end if
if ISHTML = 0 then
response.Write "<script language='javascript'>alert('请先在【系统参数配置】中将静态HTML设置为开启!');history.go(-1);</script>"
response.End
end If
%>
<br />
<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="300"><table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td style="border-bottom: #ccc 1px solid; border-top: #ccc 1px solid; border-left: #ccc 1px solid; border-right: #ccc 1px solid"><img src="Images/Survey_1.gif" width="0" height="16" id="bar_img" name="bar_img" align="absmiddle"></td>
</tr>
</table></td>
<td><span id="bar_txt2" name="bar_txt2" style="font-size:12px; color:red;"></span><span id="bar_txt1" name="bar_txt1" style="font-size:12px">0</span><span style="font-size:12px">%</span></td>
</tr>
</table>
<%
Call HtmlProSort
Call HtmlOtherSort
Call HtmlNewSort
Call HtmlJobSort
Call HtmlDownSort
Call HtmlPro
Call HtmlOther
Call HtmlNews
Call HtmlJob
Call HtmlInfo
Call HtmlDown
Call HtmlIndex
Response.Write "<script>bar_img.width=300;bar_txt2.innerHTML='';bar_txt1.innerHTML=""成功生成相关静态文件。完成比例:100"";</script>"
Response.End
%>
因为我是初学,这是我买的一个网站来学习的。但现在在数据库中加入数据后一生成新的HTML就成乱码。希望有心人能帮忙,谢谢
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
这个不是设置UTF-8的么? 展开
<!--#include file="../Include/Const.asp" -->
<!--#include file="../Include/ConnSiteData.asp" -->
<!--#include file="Admin_htmlconfig.asp"-->
<link rel="stylesheet" href="Images/Admin_style.css">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<%
if Instr(session("AdminPurview"),"|34,")=0 then
response.write ("<br /><br /><div align=""center""><font style=""color:red; font-size:9pt; "")>您没有管理该模块的权限!</font></div>")
response.end
end if
if ISHTML = 0 then
response.Write "<script language='javascript'>alert('请先在【系统参数配置】中将静态HTML设置为开启!');history.go(-1);</script>"
response.End
end If
%>
<br />
<table width="98%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="300"><table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td style="border-bottom: #ccc 1px solid; border-top: #ccc 1px solid; border-left: #ccc 1px solid; border-right: #ccc 1px solid"><img src="Images/Survey_1.gif" width="0" height="16" id="bar_img" name="bar_img" align="absmiddle"></td>
</tr>
</table></td>
<td><span id="bar_txt2" name="bar_txt2" style="font-size:12px; color:red;"></span><span id="bar_txt1" name="bar_txt1" style="font-size:12px">0</span><span style="font-size:12px">%</span></td>
</tr>
</table>
<%
Call HtmlProSort
Call HtmlOtherSort
Call HtmlNewSort
Call HtmlJobSort
Call HtmlDownSort
Call HtmlPro
Call HtmlOther
Call HtmlNews
Call HtmlJob
Call HtmlInfo
Call HtmlDown
Call HtmlIndex
Response.Write "<script>bar_img.width=300;bar_txt2.innerHTML='';bar_txt1.innerHTML=""成功生成相关静态文件。完成比例:100"";</script>"
Response.End
%>
因为我是初学,这是我买的一个网站来学习的。但现在在数据库中加入数据后一生成新的HTML就成乱码。希望有心人能帮忙,谢谢
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
这个不是设置UTF-8的么? 展开
7个回答
展开全部
WebRequest req = WebRequest.Create(url);
WebResponse res = req.GetResponse();
Stream stream = res.GetResponseStream();
Encoding encode = Encoding.GetEncoding("UTF-8");
StreamReader sr = new StreamReader(stream, encode);
你没有设置编码,UTF-8
WebResponse res = req.GetResponse();
Stream stream = res.GetResponseStream();
Encoding encode = Encoding.GetEncoding("UTF-8");
StreamReader sr = new StreamReader(stream, encode);
你没有设置编码,UTF-8
参考资料: 百度一下
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把你这个代码页面用记事本打开另存为选UTF8保存。
在试
把Admin_htmlconfig.asp 代码贴出来
在试
把Admin_htmlconfig.asp 代码贴出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
将utf-8改为gb2312即可。我用IIS测试了OK。
将utf-8改为gb2312即可。我用IIS测试了OK。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2011-02-25
展开全部
这一句<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
charset=utf-8改成charset=gb2312试试
charset=utf-8改成charset=gb2312试试
追问
改成gb2312也没用。。。。。没人么?
追答
那就不知道了,等高人来回答吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
浏览器问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询