Hello,
I would like to programmatically invoke the funcionallity that is executed when the UploadCompleteCartButton is clicked.
Is this possible?
Also it would be good if it were possible to cancel execution during the click-callback.
E.g:
protectedvoidUploadCompleteCartButton1_Click(objectsender, ImageClickEventArgse)
{
if ( // some logic..)
{
e.Cancel = true; // allow to cancel
return;
}