1 / 23

Introduction to MVC 4 06. Action Methods, Edit View, and a Search Feature

Introduction to MVC 4 06. Action Methods, Edit View, and a Search Feature. NTPCUG Dr. Tom Perkins. The Edit Link. Run the application Append /Movies to the URL (browse to the Movies controller) Hover over the Edit link Examine the generated URL. Hover.

lalasa
Télécharger la présentation

Introduction to MVC 4 06. Action Methods, Edit View, and a Search Feature

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Introduction to MVC 406. Action Methods, Edit View, and a Search Feature NTPCUG Dr. Tom Perkins

  2. The Edit Link • Run the application • Append /Movies to the URL (browse to the Movies controller) • Hover over the Edit link • Examine the generated URL

  3. Hover The Edit link was generated by the Html.ActionLink method in the Views\Movies\Index.cshtml view: @Html.ActionLink("Edit", "Edit", new { id=item.ID })

  4. The ActionLinkHtmlHelper • Generates a link to an action method on a controller • Arguments: • 1) Text to render (Edit Me) • 2) Name of action method in controller (Edit) • 3) anonymous object  route data (ID=4)

  5. Alternative: Pass Parameters Using Query String URL of: http://localhost:xxxxx/Movies/Edit?ID=4 Request sent to Controller: Movies Action Method: Edit Parameter ID: 4

  6. // // GET: /Movies/Edit/5 public ActionResult Edit(int id = 0) { Movie movie = db.Movies.Find(id); if (movie == null) { return HttpNotFound(); } return View(movie); } // // POST: /Movies/Edit/5 [HttpPost] public ActionResult Edit(Movie movie) { if (ModelState.IsValid) { db.Entry(movie).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(movie); } Default: Implied [HttpGet] attribute 2 Edit Actions in the Movies Controller Invoked for GET requests HttpPost Attribute Invoked ONLY for POST requests

  7. The HTTPGet Edit Method • // • // GET: /Movies/Edit/5 • public ActionResult Edit(int id = 0) • { • Movie movie = db.Movies.Find(id); • if (movie == null) • { • return HttpNotFound(); • } • return View(movie); • } • movie ID paramter input (default = 0) • Entity Framework Find used to look up the movie • If movie cant be found, return HttpNotFound() • The Model movie object is passed to the view When the Edit View was created, the system scanned the model and generated the markup to edit the fields.

  8. The Generated Edit View (Part 1) @model MvcMovie.Models.Movie @{ ViewBag.Title = "Edit"; } <h2>Edit</h2> The View expects that the Model it receives will be of type Movie

  9. The Generated Edit View (Part 2) @using (Html.BeginForm()) { @Html.ValidationSummary(true) <fieldset> <legend>Movie</legend> @Html.HiddenFor(model => model.ID) <div class="editor-label"> @Html.LabelFor(model => model.Title) </div> <div class="editor-field"> @Html.EditorFor(model => model.Title) @Html.ValidationMessageFor(model => model.Title) </div> … LabelFor displays the name of the field HtmlEditorFor renders an <input> statement ValidationMessageFor displays validation messages associated with field

  10. Run the Application • Navigate to /Movies URL • Click an Edit link • View the source for the page • Examine the HTML for the Form element • Note: Html <input> elements are in a <form> element • Form action attribute is set to post • When Edit button is clicked, data will be posted to the server

  11. Server actions when the Save button is clicked and the data is posted: • The values from the Form are transformed into a Movie object by the ASP MVC model binder. • The Movie object is passed to the Edit action in the Movies controller. • The ModelState.IsValid method determines whether or not the data submitted in the form is OK, the data is saved in the dbMovieDBContext instance. • The movie data is saved to the database . • The user is redirected to the Index action, which displays the data with changes. • If form data is invalid, data is re-displayed with error messages created by Html.ValidationMessageFor helpers. [HttpPost] public ActionResult Edit(Movie movie) { if (ModelState.IsValid) { db.Entry(movie).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(movie); }

  12. Posting Edited Form Data ModelState.IsValid method Edited Data Form Valid data Data saved to database Invalid data sent back to form with error messages and form is redisplayed. Data sent to Index action, data (including changes) is displayed

  13. Validation error messages

  14. Add a Search Method and View • Objective: allow the user to search for movies by genre or name • Add a SearchIndex action to the controller SearchAction method Html form for user to enter genre or name generates Get Search Values User submits search criteria Search Database Display Results

  15. Add a SearchIndex method to the MoviesController class • s => s.Title is a Lambda expression • Used in LINQ queries • LINQ queries not executed when defined or modified (deferred) • Executed when value is used or in ToList() • Execution takes place in View public ActionResultSearchIndex(string searchString) { var movies = from m in db.Movies select m; if (!String.IsNullOrEmpty(searchString)) { movies = movies.Where(s => s.Title.Contains(searchString)); } return View(movies); }

  16. Display the Search form for the User • Create a SearchIndex View: • Right click inside the SearchIndex Method • In the AddView dialog box: • Pass a Movie object to the view • Choose List in the Scaffold Template • Click Add

  17. The Create View @model IEnumerable<MvcMovie.Models.Movie> @{ ViewBag.Title = "SearchIndex"; } <h2>SearchIndex</h2> <p> @Html.ActionLink("Create New", "Create") </p> <table> <tr> <th> Title </th> <th> ReleaseDate </th> <th> Genre </th> <th> Price </th> <th></th> </tr> @foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.Title) </td> <td> @Html.DisplayFor(modelItem => item.ReleaseDate) </td> <td> @Html.DisplayFor(modelItem => item.Genre) </td> <td> @Html.DisplayFor(modelItem => item.Price) </td> <td> @Html.ActionLink("Edit", "Edit", new { id=item.ID }) | @Html.ActionLink("Details", "Details", new { id=item.ID }) | @Html.ActionLink("Delete", "Delete", new { id=item.ID }) </td> </tr> } </table>

  18. Run the App • Navigate using /Movies/SearchIndex?searchString=ghost

  19. Add a filter <form> @model IEnumerable<MvcMovie.Models.Movie> @{ ViewBag.Title = "SearchIndex"; } <h2>SearchIndex</h2> <p> @Html.ActionLink("Create New", "Create") </p> @using (Html.BeginForm()){ <p> Title: @Html.TextBox("SearchString") <br /> <input type="submit" value="Filter" /></p> }

  20. FINIS

More Related