Bind Text File To GridView

  • Thread starter Thread starter David
  • Start date Start date
D

David

Is there a way to bind a comma-delimited text file to a GridView? I want to
be able to output rejected records that I am importing from a
comma-delimited text file. Thanks.

David
 
David,

You can't databind to a plain text file, but you can first read the records
into any collection object, like Array or ArrayList, and databind to this
object.
 
Back
Top