Hi,
i have 2 pages within Dreamweaver which allow a user to enter
a vehicle details
(Page1.asp) and when clicking next, this saves the record to
MS Access, then continues to
Page2.aspx which allows image uploads of the vehicle. The
upload part works fine but the problem I'm having is associating
the uploaded images to the recently created db record by entering
in the new record ID to the filenames to the uploaded images.
Example:
ID ImageFile VehicleRecordID
1 \img001.bmp 203
2 \img002.bmp 203
3 \img003.bmp 203
etc...
For example, John Smith logs onto the website, creates a new
vehicle & enters the correct information, clicks continue and
uploads images for that vehicle, clicks finish. Because the 2 pages
are different technologies, ASP & ASP.NET written in VB.NET to
upload the images I can't access Session variables such as the
current user ID or name, or the newly added record. I hope I am
making this clear.
I am wondering if there is anything I am doing wrong or is
there a way for a aspx to access session variables created by asp
pages????
Thanks for help
Barry