asp乱码问题

UTF-8编码的话:在ASP脚本顶部加入<%@Language="vbscript" Codepage="65001"%>
以及再在<head>区域中加入<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >

gb2312编码的话:在ASP脚本顶部加入<%@Language="vbscript" Codepage="936"%>
以及再在<head>区域中加入<meta http-equiv="Content-Type" content="text/html; charset=gb2312" >

原文地址:https://www.cnblogs.com/apolloren/p/10886631.html