I\'m getting a stack overflow error when I try to call a partial view from the master.
The Partial View:
<%@ Control Language=\"C
I have seen this error before. In my case it happened when i returned a call to View() rather than PartialView() for Html.RenderAction or Html.Action in my action methods.
Hope this helps someone.