Activities of "liangshiwei"

please create a new ticket, thanks

you can remove these files.

Hi,

see https://learn.microsoft.com/en-us/aspnet/core/fundamentals/environments?view=aspnetcore-8.0

consider this https://medium.com/@chikuokuo/cookie-delete-on-net-framework-677b495901b9

okay, good luck

consider this.

override the leptonx default layout.

overridelayout

@inherits SideMenuLayout

@attribute [ExposeServices(typeof(SideMenuLayout))]
@attribute [Dependency(ReplaceServices = true)]


<LayoutView Layout="GetLayout()">
    @body
</LayoutView>

@code
{
   private Type GetLayout()
   {
       ..
       you can return your layout type dynamically here
       
       if(current URL = "xxx")
       {
          return typeof(AdminLayout);
       }else if (xxxx){
          return typeof(ApplicationLayout);
       }
       
       return typeof(DefaultLayout);
   }
}

I just need to know the details of your project.

you can use the @layout

https://learn.microsoft.com/en-us/aspnet/core/blazor/components/layouts?view=aspnetcore-8.0

ApplicationPageLayout

@inherits LayoutComponentBase

@Body

test.razor

@page "test"
@layout ApplicationPageLayout

<p>test page</p>
....

which theme are you using?

okay

Hi,

The web requests will not wait for the Distributed Event Handler.

The event will published after the transaction is completed; maybe that makes you think that the web request waits for it

You can try to do a long time work in a Distributed Event Handler to check it.

Showing 1391 to 1400 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.8.0-preview. Updated on September 21, 2026, 06:18
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.