Use this page to detail your site's privacy policy.
7 | -------------------------------------------------------------------------------- /Code/Sample Application/Server/CarRentalSystem.Admin/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model ErrorViewModel 2 | @{ 3 | ViewData["Title"] = "Error"; 4 | } 5 | 6 |
12 | Request ID: @Model.RequestId
13 |
18 | Swapping to Development environment will display more detailed information about the error that occurred. 19 |
20 |21 | The Development environment shouldn't be enabled for deployed applications. 22 | It can result in displaying sensitive information from exceptions to end users. 23 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 24 | and restarting the app. 25 |
26 | -------------------------------------------------------------------------------- /Code/Sample Application/Server/CarRentalSystem.Admin/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Code/Sample Application/Server/CarRentalSystem.Admin/Views/Statistics/Index.cshtml: -------------------------------------------------------------------------------- 1 | @model StatisticsOutputModel 2 | 3 |