I want to make a GET action that only runs if it is called by another action, so not if the user types the URL in the address bar. What can I check to determine whether this is the case?
|
|
You may decorate the action with the ChildActionOnlyAttribute.
You may then use the RenderAction() and Action() Html helpers as usual and the action cannot be called by URL. These are new to MVC 2, but from the tags I assume that you are already using that. Sample: http://haacked.com/archive/2009/11/18/aspnetmvc2-render-action.aspx |
|||
|
|
|
Make that action's acces modifier private. Actually since it's a private method, it's not an action method and cannot be called by URL:
Then call it from an action method:
|
||||
|
|
|
@Andras Decorating actions with Good Luck |
|||
|
|
