Copy from excel to webform

Hi guys,

I have a folder with a few excels with one column I want to copy to a webform. How can I achieve that ? I don’t want to iterate through them one by one and copy row by row due to performance concerns. I need to copy the whole column and paste it to the webform. Can you help me ?

Hi,

You can get whole column by -
dt_Table.DefaultView.ToTable(False,“ColumnName”)

And write that column where you want.

Hope this helps,

Cheers,

1 Like