From 68e948381b6225e6d4e1d814ab3ba40fcea70c17 Mon Sep 17 00:00:00 2001 From: Bader Nasser Date: Wed, 20 Sep 2017 15:28:15 +0400 Subject: [PATCH] Use xref link --- aspnetcore/data/ef-mvc/sort-filter-page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/data/ef-mvc/sort-filter-page.md b/aspnetcore/data/ef-mvc/sort-filter-page.md index f65ff30c8363..32911853fe3c 100644 --- a/aspnetcore/data/ef-mvc/sort-filter-page.md +++ b/aspnetcore/data/ef-mvc/sort-filter-page.md @@ -91,7 +91,7 @@ In *Views/Student/Index.cshtml*, add the highlighted code immediately before the [!code-html[](intro/samples/cu/Views/Students/Index3.cshtml?range=9-23&highlight=5-13)] -This code uses the `
` [tag helper](https://docs.microsoft.com/aspnet/core/mvc/views/tag-helpers/intro) to add the search text box and button. By default, the `` tag helper submits form data with a POST, which means that parameters are passed in the HTTP message body and not in the URL as query strings. When you specify HTTP GET, the form data is passed in the URL as query strings, which enables users to bookmark the URL. The W3C guidelines recommend that you should use GET when the action does not result in an update. +This code uses the `` [tag helper](xref:mvc/views/tag-helpers/intro) to add the search text box and button. By default, the `` tag helper submits form data with a POST, which means that parameters are passed in the HTTP message body and not in the URL as query strings. When you specify HTTP GET, the form data is passed in the URL as query strings, which enables users to bookmark the URL. The W3C guidelines recommend that you should use GET when the action does not result in an update. Run the page, enter a search string, and click Search to verify that filtering is working.