I'm very new to ASP and working on a project using ASP and not ASP.NET.
I have a small application in which after login, user can upload .xls file, then the record from this excel file is inserted into an Access database.
My sample project files are working fine i.e file uploaded and inserted to Access. My problem is that I want to insert data from that Excel file into Access with the unique user_id of the particular user, because many users can insert Excel files to same table. So that when user click on "view records", he should see only his records, not the records of others.
And another thing is figuring out how to save files with unique file names corresponding to the logged in user to avoid duplication of files.
This is the URL from which I got the code for using files for upload and inserting Excel data into Access: http://shotdev.com/asp/asp-excel/asp-upload-excel-import-to-database/.