From 4a6c13dd8aaa0450d0b03f0d6ad5229b3a734f12 Mon Sep 17 00:00:00 2001 From: wooleyra Date: Mon, 14 May 2018 23:17:22 -0500 Subject: [PATCH] Capitalize search string 'Ghost' in URL segment (#6421) Since the searching method in SQLite is case-sensative, the example should pass the search string in the correct case. --- aspnetcore/tutorials/razor-pages/search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/razor-pages/search.md b/aspnetcore/tutorials/razor-pages/search.md index afc5a68718..212510d6ba 100644 --- a/aspnetcore/tutorials/razor-pages/search.md +++ b/aspnetcore/tutorials/razor-pages/search.md @@ -42,7 +42,7 @@ Navigate to the Movies page and append a query string such as `?searchString=Gho ![Index view](search/_static/ghost.png) -If the following route template is added to the Index page, the search string can be passed as a URL segment (for example, `http://localhost:5000/Movies/ghost`). +If the following route template is added to the Index page, the search string can be passed as a URL segment (for example, `http://localhost:5000/Movies/Ghost`). ```cshtml @page "{searchString?}"