:::: MENU ::::

Sunday, June 10, 2018

Sometimes you may need to run Visual Studio as Administrator; to do so, you have to right-click on Visual Studio task bar shortcut, right-click again on Visual Studio and select Run as Administrator. Then, you may open the solution you want manually from File -> Open -> Project/Solution or drop your .sln file onto Visual...

Saturday, June 9, 2018

Blazor 0.4.0 is now available! This release includes important bug fixes and several new feature enhancements.New features in Blazor 0.4.0 (details below):Add event payloads for common event typesUse camelCase for JSON handlingAutomatic import of core Blazor namespaces in RazorSend and receive binary HTTP content using HttpClientTemplates run on IIS Express by default with autobuild enabledBind to numeric typesJavaScript interop improvementsA...

Wednesday, June 6, 2018

This post shows how a view with dynamic css styles could be implemented using an MVC view component in ASP.NET Core. The values are changed using a HTML form with ASP.NET Core tag helpers, and passed into the view component which displays the view using css styling. The styles are set at runtime.Code: https://github.com/damienbod/AspNetCoreMvcDynamicViewsCreating...