At the @OBJECT I am trying to pass the contents of the search in string form to the Search Controller. My question is how to grab the contents of Textbox from the parent or if there is a better way to approach this problem without using a button or exterior link, thanks in advance.
<form class="searchBarForm" method="post"
action="@Url.Action("Search", "Search", @OBJECT)>
@Html.TextBox("value", null,
new { @id = 'search_content'});
</form>
Update
the @Url.Action(VIEW, CONTROLLER, @OBJECT), the @OBJECT is the routeValue to the controller and for my application I just need it to be a string that gets its value from the content of the textbox.
I removed excess code for readability.