WEB开发网
开发学院软件开发C语言 C# 操作Excel之旁门左道 [ C# | Excel ] 阅读

C# 操作Excel之旁门左道 [ C# | Excel ]

 2009-05-25 08:29:10 来源:WEB开发网   
核心提示: 2.3新建aspx页面:Export.aspx,2.4去掉Export.aspx中除<%@ Page 的代码,C# 操作Excel之旁门左道 [ C# | Excel ](3),复制htm里面的代码到空白的Export.aspx中,添加<form id="form1&

2.3  新建aspx页面:  Export.aspx。

2.4  去掉Export.aspx中除<%@ Page 的代码,复制htm里面的代码到空白的Export.aspx中,添加<form id="form1" runat="server">。

3.  调取数据并显示

3.1  找到测试数据部分的html代码替换为asp:Repeater控件代码,如下

 <!--
 <tr height=19 style='height:14.25pt'>
  <td height=19 class=xl27 style='height:14.25pt' x:num>1</td>
  <td class=xl27>张三</td>
  <td class=xl27 x:num>83</td>
  <td class=xl25></td>
 </tr>
 -->
 <asp:Repeater ID="rptData" runat="server">
    <HeaderTemplate>
    </HeaderTemplate>
    <ItemTemplate>
        <tr height=19 style='height:14.25pt'>
            <td height=19 class=xl27 style='height:14.25pt' x:num>
                <%#Eval("id")%>
            </td>
            <td class=xl27>
                <%#Eval("name")%>
            </td>
            <td class=xl27 x:num>
                <%#Eval("achievement")%>
            </td>
            <td class=xl25></td>
        </tr>
    </ItemTemplate>
    <FooterTemplate>
    </FooterTemplate>
</asp:Repeater>

上一页  1 2 3 4  下一页

Tags:操作 Excel 旁门左道

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接