This is My Action link
@Html.ActionLink("Register", "Signup", "Account", routeValues: null, htmlAttributes: new { @class = "call-to-action", id = "registerLink" })</li>
And this Is My Action
[ActionName("Signup")]
public ActionResult Register()
{
return view()
}