posts - 22, comments - 5, trackbacks - 0, articles - 11
第二种比较简单。你同样复制一份你要导入的数据页面代码,只是把那两行加入form 的前面。
<html>
<head>
</head>
<%Response.Write("<meta http-equiv=Content-Type content=text/html;charset=gb2312>") %>
<%response.ContentType="application/vnd.ms-excel"%>
<form>
<table>
<tr>
<td>
这是你要导入的数据。
</td>
</tr>
</table>
</form>
</html>