This question is locked. New answers and comments are not allowed.
The Idea is that when the upload was successful Json returns a Guid
return Json(new { AttmGuid = LastGuidString }, "text/plain");
This should be returned to the server when Remove is selected, but how to bind each specific returned Id to each relevant button.
.Remove("RemoveAttachment", "Messaging", new { attachmentId = GetBound_AttmGuid} )
Does anyone has an idea how this could be possible?
Thanks GK