在aspx中实现将查询结果导出为excel文件之一前台文件-aspx文件怎么打开

在aspx中实现将查询结果导出为excel文件之一前台文件

目的:

如图,点击“数据导出”后,将以上数据导出为excel文件。

关键代码1:

< Page Language="C#" EnableEventValidation="false" AutoEventWireup="true" CodeFile="queryallscore1.aspx.cs" Inherits="queryallscore1"

StylesheetTheme="Blue" gt;

说明:

代码中加了这么一句:EnableEventValidation="false"

获取或设置一个值,该值指示页面验证回发事件,还是验证回调事件。false时即不验证页面事件。

关键代码2:

<td colspan="2">

<span><strong>查找员工成绩记录</strong></span></td>

</tr>

<tr>

<td colspan="2">

说明:

原来的td stlye变成了colspan="2" style=

colspan="2"表示2列表格合并成了1列。这里的2列表格是指将“退出查找”和“数据导出”这2列,变成1列。

可以自行百度“跨列”。

关键代码3:

<tr>

<td>

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="退出查找" />

</td>

<td>

&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;

<asp:Button ID="Button2" runat="server" OnClick="Button2_Click" Text="数据导出" />

</td>

</tr>

说明:

在原来的基础上增加了一个按钮“button2_click”,按钮的文字描述为“数据导出”。

推荐阅读