blazor

  1. R

    Resolved IText Empty PDF

    Hello, I am working on a Blazor Server application. I am trying to create and download PDFs as follows. PDF opens in a new browser tab but unfortunately, it is empty. What is wrong with my code? Could you please help? private async Task ReportPDF() { var memoryStream = new...
  2. RajeshKumar

    Resolved How to use RadzenRequiredValidator to validate a RadzenDropDown?

    I have one ParentComponent and one ChildComponent. The ChildComponent contain RadzenDropDown is not validating when click on submit button from ParentComponent . ParentComponent.razor: <RadzenTemplateForm TItem="ProductModel" Submit="OnValidSubmit" Data=@model> <DataAnnotationsValidator />...
  3. T

    Seeking .NET, Blazor Developer

    About Us: We are a US-based, fully-remote software development agency. We create custom software solutions for small and medium businesses. We don't micromanage or ask developers to be on call, we trust our team. We use email, Slack and phone or video calls to communicate, and Trello and GitHub...
  4. T

    Seeking Blazor Server Lead Developer

    About Us: We are TechRiver, a US-based, fully-remote software development agency. We create custom software solutions for small and medium businesses. We don't micromanage or ask developers to be on call, we trust our team. We use email, Slack and phone or video calls to communicate, and Trello...
  5. R

    Question Dynamic Tab with @key Problem

    Hello friends, I am working on a Blazor Server App, here is the sample data. SET IDENTITY_INSERT [dbo].[OrdersDetail] ON INSERT INTO [dbo].[OrdersDetail] ([Id], [ProductCode], [ProductName], [Quantity], [CostRatio], [UnitCost], [TotalBuyPrice], [TotalSellPrice], [ShippingNumber], [Status]...
  6. SaeedP

    Why I can't see my menu in Blazor?

    Hello, Why I can't see my menu in Blazor? Here is my code: mainLayot: @inherits LayoutComponentBase <PageTitle>BlazorApp1</PageTitle> <div class="page"> <div class="sidebar"> <saeedMenu /> @*<NavMenu/>*@ </div> <main> @*<div class="top-row px-4">...
  7. S

    Hi, is it possible to make a Blazor application frameless?

    I'm looking to build a toolbar application using Blazor and i was wondering if it would be possible to make the app frameless ( removing the minimize/maximize and close buttons). Can this be done or no? Thanks!
  8. SaeedP

    Resolved code section in blazor

    Hello, Can the code that is written in Blazor in the code section be written in the controller? Are the codes exactly the same? thanks,
  9. L

    How to lock TicTacToe matchfield after a player won?

    I am actually programming a tic tac toe game with the blazor framework and I have already a function to lock the button if it was clicked. It looks like this: public class ElementOfMatchField { public int Row { get; set; } public int Column { get; set; } public...
  10. L

    Resolved Blazor get html element using c# code

    I wanna build a Tic Tac Toe Blazor game. To print the fields I am using html buttons and a foreach loop: @if(MatchField != null) { @foreach(var field in MatchField) { <span> <button @onclick="() => PrintSymbolOnButton(field)" >...
  11. L

    Blazor Server Side Web Application with authorization?

    I have a Blazor Server Side Web Application that uses the default authorization and authentication. app.UseAuthentication() app.UseAuthorization() I can protect my pages with @attribute [Authorize] I have a login page with anonymous access to authenticate. This works fine. Now I need a...
  12. SaeedP

    why am I getting: "HTTP Error 500.30 error" when publishing the Blazor server-side site?

    Hello, I've made my web app on Blazor server-side and I'm trying to publish it on a windows server. I tried different methods to publish but all came to the same conclusion. HTTP Error 500.30 - ANCM In-Process Start Failure Why am I having this problem? You can see the result on...
Back
Top Bottom