How to restrict an actionmethod being called from a RedirecttoAction method in MVC?
aravazhi k
Select an image from your device to upload
Decorate that action method with [ChildActionOnly] attribute.
With [ChildActionOnly] attribute annotated, an action method can be called only as a child method from within a view.