I am planning to request the users of the my web application to submit bulk data in the following format.
BatchID:1
TotalRecords:200
Cust:CustID~FirstName~LastName~Age~Dob~City~State~Country
1~John~Abraham~35~10/10/1974~New York~NY~US
Order:OrderID~CustID~Qty~Amount~DOS
1~1~10~100.00~1/1/2012
2~1~100~1000.00~1/1/2012
1~1~10~100.00~1/1/2012
OrderDet:OrderDetID~OrderID~Reg1~Remarks
1~1~12393A~Testing order
2~1~23123B~tesitng order 1
Above shown is just a set of records. One flat file will have upto 200 files.
Do you think this is a right way of doing it? We need to allow batch upload so that users need not enter each record at a time from the website.
If you can think of any other format that will be of great help