david7777777777
Programmer
I have ASP pages talking to SQL 2000 database. Here's a simple version of the tbl_Shipments table:
TrackingNumber PK
DateSent
DateReceived
Tape01
Tape02
Tape03
I have a query page that displays records according to their TrackingNumber value. I'd like the user to be able to click a "MakeNewShipment" button, which would take all of the values from the current, existing record being displayed in this query page and "throw" all of the values(except the TrackingNumber)into corresponding DTC's on a "NewShipment' page, where the user would only have to re-enter the new Tracking number for this shipment/box. I thought about throwing the existing record in to the editable grid and simply having the user edit the TrackingNumber that way, but I haven't figured out how to allow the user to be able to delete/reset the ReceivedDate field so it can be re-enterd when the shipment is received again. Make sense? Thanks for any clues. This trick is completely new territory for me.
TrackingNumber PK
DateSent
DateReceived
Tape01
Tape02
Tape03
I have a query page that displays records according to their TrackingNumber value. I'd like the user to be able to click a "MakeNewShipment" button, which would take all of the values from the current, existing record being displayed in this query page and "throw" all of the values(except the TrackingNumber)into corresponding DTC's on a "NewShipment' page, where the user would only have to re-enter the new Tracking number for this shipment/box. I thought about throwing the existing record in to the editable grid and simply having the user edit the TrackingNumber that way, but I haven't figured out how to allow the user to be able to delete/reset the ReceivedDate field so it can be re-enterd when the shipment is received again. Make sense? Thanks for any clues. This trick is completely new territory for me.