Presentation is loading. Please wait.

Presentation is loading. Please wait.

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

Similar presentations


Presentation on theme: "Introduction to MVC 4 06. Action Methods, Edit View, and a Search Feature NTPCUG Dr. Tom Perkins."— Presentation transcript:

1 Introduction to MVC 4 06. 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 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 }) Hover

4 The ActionLink HtmlHelper 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 2 Edit Actions in the Movies Controller // // 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); } HttpPost Attribute Invoked ONLY for POST requests Default: Implied [HttpGet] attribute Invoked for GET requests

7 The HTTPGet Edit Method 1. movie ID paramter input (default = 0) 2.Entity Framework Find used to look up the movie 3.If movie cant be found, return HttpNotFound() 4.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. // // GET: /Movies/Edit/5 public ActionResult Edit(int id = 0) { Movie movie = db.Movies.Find(id); if (movie == null) { return HttpNotFound(); } return View(movie); }

8 The Generated Edit View (Part 1) @model MvcMovie.Models.Movie @{ ViewBag.Title = "Edit"; } Edit 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) Movie @Html.HiddenFor(model => model.ID) @Html.LabelFor(model => model.Title) @Html.EditorFor(model => model.Title) @Html.ValidationMessageFor(model => model.Title) … LabelFor displays the name of the field HtmlEditorFor renders an 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 elements are in a 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 db MovieDBContext 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 Form Edited Data ModelState.IsValid method Valid data Data saved to database Data sent to Index action, data (including changes) is displayed Invalid data sent back to form with error messages and form is redisplayed.

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 generates Html form for user to enter genre or name Get Search Values Search Database Display Results User submits search criteria

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 ActionResult SearchIndex(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

18 The Create View @model IEnumerable @{ ViewBag.Title = "SearchIndex"; } SearchIndex @Html.ActionLink("Create New", "Create") Title ReleaseDate Genre Price @foreach (var item in Model) { @Html.DisplayFor(modelItem => item.Title) @Html.DisplayFor(modelItem => item.ReleaseDate) @Html.DisplayFor(modelItem => item.Genre) @Html.DisplayFor(modelItem => item.Price) @Html.ActionLink("Edit", "Edit", new { id=item.ID }) | @Html.ActionLink("Details", "Details", new { id=item.ID }) | @Html.ActionLink("Delete", "Delete", new { id=item.ID }) }

19 Run the App Navigate using /Movies/SearchIndex?searchString=ghost

20

21 Add a filter @model IEnumerable @{ ViewBag.Title = "SearchIndex"; } SearchIndex @Html.ActionLink("Create New", "Create") @using (Html.BeginForm()){ Title: @Html.TextBox("SearchString") }

22

23 FINIS


Download ppt "Introduction to MVC 4 06. Action Methods, Edit View, and a Search Feature NTPCUG Dr. Tom Perkins."

Similar presentations


Ads by Google