·您的位置: 首页 » 资源教程 » 编程开发 » ASP » 在ASP.NET访问Excel文件

在ASP.NET访问Excel文件

类别: ASP教程  评论数:0 总得分:0
     在ASP.NET访问Excel文件 (VB and C#)
  
  
  C# Code
  ---------------------------------------------
  <%@ Page Language="C#" %>
  <%@ Import Namespace="System.Data" %>
  <%@ Import Namespace="System.Data.ADO" %>
  <script language="C#" runat="server">
  protected void Page_Load(Object Src, EventArgs E)
  {
  string strConn;
  strConn = "Provider=Microsoft.Jet.OLEDB.4.0;"
  +"Data Source=C:\\exceltest.xls;"
  +"Extended Properties=Excel 8.0;";
  ADODataSetCommand myCommand = new ADODataSetCommand("SELECT * FROM [Sheet1$]", strConn);
  DataSet myDataSet = new DataSet();
  myCommand.FillDataSet(myDataSet, "ExcelInfo");
  DataGrid1.DataSource = myDataSet.Tables["ExcelInfo"].DefaultView;
  DataGrid1.DataBind();
  }
  </script>
  <p><asp:Label id=Label1 runat="server">Excel表格内容:</asp:Label></p>
  <asp:DataGrid id=DataGrid1 runat="server"/>
  
  VB.NET Code
  ----------------------------------------------
  <%@ Page Language="VB" %>
  <%@ Import Namespace="System.Data" %>
  <%@ Import Namespace="System.Data.ADO" %>
  <script language="VB" runat="server">
  Sub Page_Load(sender As Object, e As EventArgs)
  Dim myDataset As New DataSet()
  Dim strConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _
  & "Data Source=C:exceltest.xls;" _
  & "Extended Properties=""Excel 8.0;"""
  Dim myADODataSetCommand As New ADODataSetCommand("SELECT * FROM [Sheet1$]", strConn)
  myADODataSetCommand.TableMappings.Add("Table", "ExcelTest")
  myADODataSetCommand.FillDataSet(myDataset)
  DataGrid1.DataSource = myDataset.Tables(0).DefaultView
  DataGrid1.DataBind()
  End Sub
  </script>
  <p><asp:Label id=Label1 runat="server">Excel表格内容:</asp:Label></p>
  <asp:DataGrid id=DataGrid1 runat="server"/>
  
  

-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:
纯粹空间 softpure.com
Copyright © 2006-2008 暖阳制作 版权所有
QQ: 15242663 (拒绝闲聊)  Email: faisun@sina.com
 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛   Valid XHTML 1.0 Transitional
百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1