favc4
Posts: 30
|
| Posted: 07/02/2006, 2:01 AM |
|
Hi there, does anyone knows when using a FileUpload within a record form wich triggers first? AfterProcessFile or AfterUpdate?
Thanks
Carlos
_________________
Programming win32 and went crazy... |
 |
 |
DonB
|
| Posted: 07/02/2006, 2:07 PM |
|
The file is uploaded before the insert/update executes - when the form
parameters are collected from the POST data. This is before the 'what
button was pressed' check is even performed. Next, once the button-press is
checked, the database insert/update is performed. Lastly, the 'move' method
is called on the upload component. Thus, the AfterExecuteUpdate event fires
before the AfterProcessFile
--
DonB
http://www.gotodon.com/ccbth
"favc4" <favc4@forum.codecharge> wrote in message
news:644a78b6b439ad@news.codecharge.com...
> Hi there, does anyone knows when using a FileUpload within a record form
wich
> triggers first? AfterProcessFile or AfterUpdate?
>
> Thanks
>
>
> Carlos
> _________________
> Programming win32 and went crazy...
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|