![]() |
Sergey Kornilov admin 5/8/2012 |
Copy feature doesn't actually copy the record. It rather prepolupates the Add page with the content of selected record. What you can do is to use AfterAdd event to copy details data of the record being copied. Session("where") = where
|
Q
|
Quintin author 5/8/2012 |
Copy feature doesn't actually copy the record. It rather prepolupates the Add page with the content of selected record. What you can do is to use AfterAdd event to copy details data of the record being copied. What you need to do is to save the ID of the record being copied. Add the following code to 'Copy page: OnLoad' event: Session("where") = where
|