I have the following code which gives me a syntax error - unterminated string constant.I\'ve matched up the quotes can\'t seem to spot an issue. Any ideas? It works fine, th
You can rewrite it like this:
<input type="button" class="my-button" value="" name="back"
onclick="@("location.href='"
+ Url.Action(Model.Back.Step.ToString(), "MyController")
+ "'")" />
Use an actionlink instead. This one creates a nice bootstrap button:
@Html.ActionLink("Cancel", "Index", "Home", null, new { @class = "btn btn-default" })