Jump to content

Recommended Posts

Posted

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

  • 2 weeks later...
Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.