i am creating a web app in mvc-5
here is my actionlink button which looks like
<p>
    <span class="btn btn-success glyphicon glyphicon-plus">
        @Html.ActionLink(" ", "insert")
    </span>
</p>
when a user clicks on this button he should be redirected to the following page
public ActionResult insert()
        {
            return View();
        }
but nothing is happening when i am clicking the button
what i need to do?
