I have below scenarios.
My controller check that user has proper rights and then redirect him on proper action.
All action have ChildActionOnly attribute, because these action can't be invoke directly by URL. (only user with proper rights can call invoke action)
Each action return View with special button. This button can call critical action.
In the picture I illustrate it (link is below)
http://s23.postimg.org/fmndgt5p7/mvc.jpg
My question is how can I call DeleteData Action after click a special button? and I don't want have ability to call DeleteData Action directly via URL and I don't want check user rights second time.