Reputation: 5384
I have the following Ajax.Actionlink
@Ajax.ActionLink("Register", "_RegisterPartial", "Home", null, new AjaxOptions { UpdateTargetId = "userLogon"})
Is the expected Controller function "_RegisterPartial" ??
If so, what's the real need to have the word Partial and the Underscore ??
Upvotes: 2
Views: 88
Reputation: 67898
You are using this overload, and so the expected controller name is Home
.
Upvotes: 2