skip to Main Content

Change markup content with variable in Blazor – Asp.net

I want to change the child content of a button after click, but I got some error when I try. This code work but, obviusly, don't render the icon passed: <TelerikButton OnClick="@RevealPassword" Class="pass-btn" Primary="true" ButtonType="ButtonType.Button" Id="btnShowPwd" Title="Show"> @EyeIcon </TelerikButton> @code…

VIEW QUESTION

Multiple Modelview for Blazor Server Page – Asp.net

I have a Blazor Page with one View, but I want to use two ViewModels for that, depends on which URL I use. @page "/canSimStatic" @page "/CanSimDynamic" @using System.Diagnostics; @using edge_cantraficSimulator.Data @using edge_cantraficSimulator.ViewModels @using System.Threading; @using System.IO; @using Microsoft.AspNetCore.Mvc.Rendering; @inject…

VIEW QUESTION
Back To Top
Search