apzl_leasing/WebContent/TestCase/TestChinese.jsp
2018-06-03 22:26:41 +08:00

23 lines
589 B
Plaintext

<%@ page contentType="text/html; charset=GBK"%><%@ include file="/IncludeBeginMD.jsp"%><%
/*
* Content: 测试中文字符集
*/
String sTestChinese = CurPage.getParameter("TestChinese");
if(sTestChinese==null || !sTestChinese.equals("测试中文字符集")){
%>
<script type="text/javascript">
self.returnValue = "failure";
//self.close();
</script>
<%
throw new Exception("这一台客户端无法正确传递中文字符,这会导致系统错误。请与系统管理员联系。");
}else{
%>
<script type="text/javascript">
self.returnValue = "success";
self.close();
</script>
<%
}
%>
<%@ include file="/IncludeEnd.jsp"%>