vote up 1 vote down star
1

Can a so called action in my controller just be a regular function that returns anything I want or does the return of an ActionResult declare whether its an "action" or not?

I was wondering if i could call functions in my ActionLink in the "actionname" that didn't return actionresults.

thx

flag

2 Answers

vote up 4 vote down check

All public methods of a controller are actions by default, regardless of return type. So, yes, you can call them. Use [NonActionAttribute] to override this default.

link|flag
Yeah my question probably didn't make sense all that much, but this is what i wanted to know. thanks – Dacrocky Mar 2 at 16:57
vote up -2 vote down

Yes, all actions should return an ActionResult. The MVC engine only know to handle an ActionResult (or a derivative).

I don't understand what you mean with "call functions in my ActionLink that don't return ActionResults". Even if you don't want to return any meaning, you still have to return an ActionResult.

What is it you want to accomplish?

link|flag
Should, I agree. Must, that's not true. Try it! – Craig Stuntz Mar 2 at 16:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.