mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
* Demos as WASM * Copy the default wasm loading CSS. * InMemory database instead SQLite * DbContext filled with data * Host project added * Server renamed to Host * Remove location.reload. * Remove startup. * Stop github caching to file. Use larger page size to improve load time. * Display enum values. * DbContext with static data * Host DbContex added * Examples and Sitemap added * docker updated * Theme changing. * Update Dockerfile * Set WORKDIR. * Do not throw errors for duplicate assets. * Do not inherit Index from DbContextPage * Documentation works again. * Sqlite removed from host * DataGrid Save/Load settings fixed * Demo source fixed * Add loading. * Add loading image * Hide the loading with JS interop. * Add the loading globally. * Add server demos. * Delete data files. * Remove the db copy code from Dockerfile. * DbContext seed fixed * missing await added * Separate solutions for all project, Blazor server and Blazor WebAssembly added * tree demos data access fixed * Avoid using Last() and First() * Orders and OrderDetails data made smaller * Update loading animation * Move the loading to MainLayout. * Update loading animation speed * Seed() improved * Revert "Move the loading to MainLayout." This reverts commit f43ce050396b9483e8809af35493eb35531f254c. * Fix homepage bg color with dark theme * Revert "Revert "Move the loading to MainLayout."" This reverts commit faee40d4ad92f474577434c61f31d847e6777a53. Co-authored-by: Atanas Korchev <akorchev@gmail.com> Co-authored-by: yordanov <vasil@yordanov.info>
29 lines
748 B
C#
29 lines
748 B
C#
using System.Diagnostics;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace RBSWasm6.Server.Pages
|
|
{
|
|
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
|
|
[IgnoreAntiforgeryToken]
|
|
public class ErrorModel : PageModel
|
|
{
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
private readonly ILogger<ErrorModel> _logger;
|
|
|
|
public ErrorModel(ILogger<ErrorModel> logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public void OnGet()
|
|
{
|
|
RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier;
|
|
}
|
|
}
|
|
}
|