Welcome to the Extension feedback portal. We’re happy you’re here! If you have feedback on how to improve the Extension, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

0
Votes

I created a blazor web app project using your template from Visual Studio (create new syncfusion project) 

I set Authentication type "Individual accounts"

I set Interactive type  "Server"

and interactivity location "Global"

then I Added a Dialog just to see a component but the problem is using the login page.

I changed the "defaultconnection" in appsetting.json to connect the application to a real personal Database where usually the login success

In your application I received an error in this piece of code


    protected override async Task OnInitializedAsync()

    {

        if (HttpMethods.IsGet(HttpContext.Request.Method))

        {

            // Clear the existing external cookie to ensure a clean login process

            await HttpContext.SignOutAsync(IdentityConstants.ExternalScheme);

        }

    }

If I remarked this piece of code but in any case the application generate an error 

How can I login in this condition ?

I add in attachement the application