You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On page 649, step-16, another anchor tag is used to pass dictionary to current page: Shipper
However, this produces the error: An unhandled exception occurred while processing the request.
InvalidOperationException: The view 'Shipper' was not found. The following locations were searched:
/Views/Home/Shipper.en-US.cshtml
/Views/Home/Shipper.en.cshtml
/Views/Home/Shipper.cshtml
...
So I modified the asp-action="asp-action="Index" instead and I get no issues. Is that what is expected?
The text was updated successfully, but these errors were encountered:
In Step 13, you should have created a Razor view named Shipper.cshtml in the Views/Home folder:
As you can see from your error message, ASP.NET Core cannot find that file. Check that you have that file and that it is NOT a Razor Page (it must NOT have a @page directive at the top.)
On page 649, step-16, another anchor tag is used to pass dictionary to current page:
Shipper
However, this produces the error:
An unhandled exception occurred while processing the request.
InvalidOperationException: The view 'Shipper' was not found. The following locations were searched:
/Views/Home/Shipper.en-US.cshtml
/Views/Home/Shipper.en.cshtml
/Views/Home/Shipper.cshtml
...
So I modified the asp-action="asp-action="Index" instead and I get no issues. Is that what is expected?
The text was updated successfully, but these errors were encountered: