I've downloaded great example of Imar Spaanjaar.
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=476
I've created a script for import records from excel file ... Can you tell me how to integrate the script in nTier example?
Do you think that is it possibile to do this:
in che script, after reading each row, do something like this:
Person person = new Person();
person.firstname = ....
person.lastname = ...
and then save the record readed in DB using:
PersonManager.Save(person);
Can you tell me if this is OK?? Read each record and call .Save method with each record readed from Excel!
Thanks