欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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>