| | |
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 activexcontrol advice ajax alltypeofvideos appliances asp asp.net bc30451 beginner bottomasp.net box browser button c# cac checkbox click commonfunctions control css dataaccesslayer database datagridview datagridviewcheckbox datalist deadlock deployment development dgv dialog dropdownlist dynamic dynamically edit embeddingactivexcontrol expose fileuploader fill findcontrol flash formatdecimal formview gridview gudi iframe iis javascript listbox login microsoft mono mouse mssql multistepregistration news novell numerical objects opera panelmasterpagebuttoncontrols radio redirect registration relationaldatabases reportemail rotatepage save schoolproject search security sessionvariables silverlight smartcard smoobjects software sql-server sqlserver2005 ssl suse textbox tracking treeview unauthorized validatedate validation vb.net video videos virtualdirectory vista visualstudio web webapplications webdevelopemnt webdevelopment webprogramming webservice xsl youareanotmemberofthedebuggerusers






