Activities of "liangshiwei"

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.

Hi,

will the ABP Login API continue to work seamlessly?

yes, the login API is stardand OAUTH.

you can continue to use code flow.

https://docs.expo.dev/guides/authentication/

Showing 691 to 700 of 5992 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54