@Html.ActionLink("Add a bill", "Create", new { controller = "Bill"});
This is the code I used to add an link to Create method in Bill controller.
But in the view I saw
Add a bill (/Bill/Create):
So, how can I remove the brackets? (/Bill/Create).
And, I also want this link to act as a button instead of a , how can I do that? Thanks for your help.