Re: After upload

  •  04-01-2009, 6:26 PM

    Re: After upload

    Brilliant, thanks Terry, I appreciate your help, it worked a treat :)  Below is the code converted to VB if anyone else needs it:
    1. Public Sub Attachments1_AttachmentAdded(ByVal sender As ObjectByVal args As CuteWebUI.AttachmentItemEventArgs)   
    2.         fileuploadcount += 1   
    3. End Sub  
    4.   
    5. Public Sub Attachments1_PreRender(ByVal sender As ObjectByVal e As System.EventArgs)   
    6.         If fileuploadcount > 0 Then  
    7.             Response.Redirect("photos_uploaded.aspx")   
    8.         End If  
    9. End Sub  
    Kind regards,
     
    Rich
View Complete Thread