I have the following snippet in my razor view.
@Html.ActionLink("US", "List", "Campaigns", new { country = "US", vertical = "Insurance" }, null)
<input id="verticals" />
How do I substitute vertical = "Insurance"
with the value of <input id="verticals" />
?