I'm not seeing any extra requests in Fiddler when I have a view that makes RenderAction
calls. Is it because it isn't a separate web request, per say, it's all done internally when the controller is rendering its view?
Asked
Active
Viewed 1,048 times
5

tereško
- 58,060
- 25
- 98
- 150

user895400
- 368
- 1
- 7
- 18
1 Answers
3
RenderAction
simply invokes the given action on a controller. The result of that action will be written to the current page that's being requested. It does not force the client to make additional requests.
For more info, see Phil Haack's post about Html.RenderAction and Html.Action.

wsanville
- 37,158
- 8
- 76
- 101