Blazor Component
MyComponent01 Page (in Component folder) _Imports.razor Index Page Sources:
MyComponent01 Page (in Component folder) _Imports.razor Index Page Sources:
A default layout can be specified in the /Pages/_Imports.razor file. This setting can be overridden by Blazor finding a more specific _Imports.razor file closer to the page it is rendering. The final (and most explicit) level of specifying a template to use is to literally specify it in the page itself using the @layout directive. Note: You can... » read more
Resources Link Microsoft .NET – Blazor Info. https://dotnet.microsoft.com/apps/aspnet/web-apps/blazor Blazor University – Online tutorials. https://blazor-university.com/ Pragimtech.com – Online tutorials. https://www.pragimtech.com/blog/blazor/what-is-blazor/ ASP.NET Core Documentation By Microsoft – Blazor Documentation and Examples https://docs.microsoft.com/en-us/aspnet/core/blazor/?view=aspnetcore-5.0
Issue: When trying to run debugger, get the following error message… FileNotFoundException: Could not load file or assembly 'Microsoft.Build.Framework, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. Fix: Close all running instances of Visual Studio Launch the Visual Studio Developer Command Prompt as Admin Add DLL to GAC... » read more
Note: Contains is case sensitive.
Set Task Scheduler History Using Windows GUI Open an elevated Task Scheduler (right-click on the Task Scheduler icon and choose Run as administrator) In the Actions pane (right pane, not the actions tab), click Enable All Tasks History Sources: https://medium.com/techygeekshome/enable-windows-task-scheduler-history-996a601a178c
Error: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Must issue a STARTTLS command first. Fix: Step (1): smtp.EnableSsl = true; if not enough: Step (2): “Access for less secure apps” must be enabled for the Gmail account used by the NetworkCredential using google’s settings page:
For Analysis Services, Integration Services, or Reporting Services projects, you can install the appropriate extensions from within Visual Studio with Extensions > Manage Extensions. Download the Reporting service project templates from Manage Extensions of Visual Studio. Visual Studio -> Extensions -> Manager Extensions Search for “Reporting” and download “Microsoft Reporting Services Projects”.
SQL Server Data Tools (SSDT) is a Microsoft Visual Studio environment for creating business intelligence solutions. SSDT features the Report Designer authoring environment, where you can open, modify, preview, save, and deploy Reporting Services paginated report definitions, shared data sources, shared datasets, and report parts. SQL Server Data Tools (SSDT) is not included with SQL... » read more