How could I send a user to a confirmation page after ALL file uploads are completed?
Right now i am trying to do some logic on the FileUploaded procedure:
If uploadcount = Uploader1.Items.Count - 1 Then
Response.Redirect(
"Thanks.aspx")
End If
However... this is not working!
Any thoughts???