Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@kdhollow
Created February 25, 2016 19:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdhollow/48ba96fda279bfdcd6c3 to your computer and use it in GitHub Desktop.
Save kdhollow/48ba96fda279bfdcd6c3 to your computer and use it in GitHub Desktop.
Views\Home\Index.cshtml
@using AFDSearch.Models
@model AirportSearch
@{
ViewBag.Title = "Airport Search";
}
@using (Html.BeginForm("Search", "Airport", FormMethod.Post))
{
@Html.TextBoxFor(m => m.SearchText)
<input type="submit" value="Search" />
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment