Hi Mantosh,
DataTable imports only from XLS files. The data you have appears to be a comma-separated, i.e., CSV data. Though Excel can open CSV files, it's not an XLS file -- until you save it as such.
So, the first option is to save the CSV data as an XLS file. If this cannot be done manually by a user, an Excel/VBA macro may be written to do this.
If the above isn't feasible, you have two options as I see it:
1. Read the CSV data as Text data. You will have to use DataSocket for this (search the forums). But it won't be pretty-looking: you'll see the data as you would in a Notepad.
2. Use the MS Office's SpreadSheet ActiveX control. this can display CSV data in an Excel format, using the CSVURL property. I just tested this and it works:

Hope this gives you some ideas.
-Khalid
Message Edited by Khalid on 05-03-2006 01:28 PM