| | |
How to call excel sheet in asp.net
Please support our ASP.NET advertiser: Intel Parallel Studio Home
![]() |
•
•
Join Date: Jan 2008
Posts: 2,052
Reputation:
Solved Threads: 118
try this link :
http://www.aspfree.com/c/a/ASP.NET-C...s-from-ASPNET/
http://www.aspfree.com/c/a/ASP.NET-C...s-from-ASPNET/
Due to lack of freedom of speech, i no longer post on this website.
•
•
Join Date: Nov 2006
Posts: 1
Reputation:
Solved Threads: 0
Use this..
u may get data from ur excelsheet
u may get data from ur excelsheet
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Dim DBConnection = New OleDbConnection( _
"Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("~/datame.xls") & ";" & _
"Extended Properties=""Excel 8.0;HDR=Yes""")
DBConnection.Open()
Dim SQLString As String = "SELECT * FROM [Sheet2$] "
Dim DBCommand = New OleDbCommand(SQLString, DBConnection)
Dim DBReader As OleDbDataReader = DBCommand.ExecuteReader()
GridView1.DataSource = DBReader
GridView1.DataBind()
DBReader.Close()
DBConnection.Close()
End Sub•
•
Join Date: May 2008
Posts: 144
Reputation:
Solved Threads: 9
Try this following links. Hope it will help you.
http://www.beansoftware.com/asp.net-...l-reports.aspx
http://www.dotnetspider.com/resource...e-asp-net.aspx
http://www.beansoftware.com/asp.net-...l-reports.aspx
http://www.dotnetspider.com/resource...e-asp-net.aspx
![]() |
Similar Threads
- Retriving data from excel sheet into an asp page (ASP)
- Help with automatic update problem and more (Viruses, Spyware and other Nasties)
Other Threads in the ASP.NET Forum
- Previous Thread: ASP site not working when uploaded
- Next Thread: What are the differences between ASP.NET and ASP?
| Thread Tools | Search this Thread |
.net 2.0 activexcontrol advice ajax alltypeofvideos asp asp.net bc30451 bottomasp.net box browser button c# c#gridviewcolumn checkbox click commonfunctions compatible confirmationcodegeneration content contenttype courier css dataaccesslayer database datagridview datagridviewcheckbox datalist deadlock development dgv dropdownlist dynamically edit expose fileuploader fill flash formatdecimal forms formview gridview gudi homeedition iframe iis javascript jquery listbox login microsoft mono mouse mssql multistepregistration news numerical objects opera panelmasterpagebuttoncontrols radio ratings redirect registration relationaldatabases reportemail rotatepage save schoolproject search security serializesmo.table silverlight smartcard smoobjects software sql-server sqlserver2005 suse textbox tracking unauthorized validation vb.net video videos virtualdirectory vista visual-studio visualstudio web webapplications webarchitecture webdevelopemnt webprogramming webservice xml xsl youareanotmemberofthedebuggerusers






