asp中utf8不会出现乱码的写法
程序员文章站
2022-05-03 16:31:52
复制代码 代码如下:<%@ codepage=65001 %><% response.codepage=65001%><% response....
复制代码 代码如下:
<%@ codepage=65001 %>
<% response.codepage=65001%>
<% response.charset="utf-8" %>
<!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>untitled document</title>
</head>
<body>
内容
</body>
</html>
下一篇: C#实现简单获取扫码枪信息代码