4,009
社区成员




<TD align="center"><input type="checkbox" name="check" value=""></TD>
<% @LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
<%
Option Explicit
Response.CharSet = "UTF-8"
Session.Codepage = 65001
%>
<html>
<head>
<title> title </title>
<meta http-equiv="Content-Type" content="text/html; CHARSET=utf-8">
<meta http-equiv="Cache-Control" content="No-Cache">
<meta http-equiv="Pragma" content="No-Cache">
<meta http-equiv="expires" content="now">
<%
Server.ScriptTimeout=1000000
response.buffer=true
response.contenttype="application/vnd.ms-excel"
Response.AddHeader "Content-Disposition","attachment;filename= ExcelFileName.xls"
%>
<html>
<body style="overflow-x:hidden">
<table border="1">
<TR >
<TD align="center"><input type="checkbox" name="check" value="" style="left-padding: 200px;" selected/></TD>
</TR>
</table>
</body>
</html>