Hi
I am new to aspose. I have a solution where I loop through 2 dataviews and based on the view I dynamically create a number of html tables which I then add to my webpage.
some thing like
Dim tt As New Table
tt.BorderColor = Drawing.Color.Beige
tt.CellPadding = “3”
tt.ID = “”
Dim th As New TableHeaderRow()
Dim thc As New TableHeaderCell()
thc.Text = “Patient”
th.Cells.Add(thc)
Now I would like to use aspose to export the data from the webpage to excel and would like to reuse as much of my code as possible. Is there anything equivalent to the above in aspose.cells? In the examples I have found it looks like I have to specify which cell to put my content into and this makes it a bit troublesome as size an number of tables will vary each time.
thanks for any help
br Hans Jørgen