Activities of "liangshiwei"

No, As I said you try to replace the AbpSelectTagHelperService instead of AbpTagHelperService<AbpSelectTagHelper>, AbpSelectTagHelper

For example:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpSelectTagHelperService))]
public class MySelectTagHelperService : AbpSelectTagHelperService
{
    public MySelectTagHelperService(IHtmlGenerator generator, HtmlEncoder encoder, IAbpTagHelperLocalizer tagHelperLocalizer, IStringLocalizerFactory stringLocalizerFactory, IAbpEnumLocalizer abpEnumLocalizer) : base(generator, encoder, tagHelperLocalizer, stringLocalizerFactory, abpEnumLocalizer)
    {
    }

    public override void Process(TagHelperContext context, TagHelperOutput output)
    {
        ...
        base.Process(context, output);
    }
}

:)

Hi,

You should see code like this in your project, please comment on these codes.

AddResponseCompression UseResponseCompression

Hi,

I guess you are using the Response compression.

Can you try to disable it to test again?

Hi,

Sorry,I just realized you are using the Blazor UI.

You need to replace the TenantManagement.razor

Is there a way I can take a look at the original source code

You can download the source code using the ABP suite.

Here is the document: https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components

Hi,

You need to customize the leptonx by replacing the component, I can provide an example if you needed.

Hi,

ABP will override the default value using the setting value

https://github.com/abpframework/abp/blob/260507ff4ed476d42efbd2012c545adf99bb0c28/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/AbpIdentityOptionsManager.cs

You need to call the SetAsync first: https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Application/Volo/Abp/Identity/IdentityUserAppService.cs

protected IOptions<IdentityOptions> IdentityOptions { get; }

....

await IdentityOptions.SetAsync();

Hi,

You can override the page if you want.

/Pages/Saas/Host/Tenants/ImpersonateTenantModal.cshtml /Pages/Saas/Host/Tenants/ImpersonateTenantModal.cshtml.cs

Hi,

You can try to replace the AbpSelectTagHelperService.

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(AbpSelectTagHelperService))]
public class MySelectTagHelperService : AbpSelectTagHelperService

Can you share the full error logs?

Showing 2911 to 2920 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 17, 2025, 07:08
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.