Saco Posted January 22, 2006 at 10:01 PM Report #12243 Posted January 22, 2006 at 10:01 PM Pois é, gostava de saber como é que leio um ficheiro XLS (do Excel) em ASP, para poder pegar nos valores e mete-los em SQL... Já consegui ler o ficheiro e guardar num DataSet, consigo tirar cada linha do DataSet, mas depois nao consigo saber o valor de cada célula da linha. Alguem me pode explicar como fazer isso? Obrigado
max Posted February 6, 2006 at 05:11 AM Report #13428 Posted February 6, 2006 at 05:11 AM queres em asp ou asp.net? experimenta este código (em asp.net): Private Sub Getcampos(ByVal ds As DataSet) ' Get Each DataTable in the DataTableCollection and print each row value. Dim t As DataTable Dim r As DataRow Dim c As DataColumn Dim i As Integer For Each t In ds.Tables For Each r In t.Rows For Each c In t.Columns If Not (r(c) Is Nothing) Then Response.Write(r(c)) End If Next Response.Write("&fim_da_linha<br>") Next Next Response.Write("&fim_global<br>") End Sub
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now