I\'m getting a stack overflow error when I try to call a partial view from the master.
The Partial View:
<%@ Control Language=\"C
What happens when you change
<%= Html.Action("TestLogin", "Members")%>
to
<%= Html.RenderPartial("TestLogin", "Members");%>?
<%= Html.RenderPartial("TestLogin", "Members");%>
Please also note there is a ; at the end of the command. Miss this and you'll get another error.