Dear support team,
I host Angular into IIS: https://dmsuat.hanwhalife.com.vn:501/HLVDMS/
When i click Login, redirect to service like this
But when i login website redirect to localhost:4200
I have update appsettings.json like this
I don't understand why service redirect to localhost:4200
Please show me how to fix it
Could you please check the table
IdentityServerClientRedirectUrisin your prod database?Also, I've noticed that your
environment.tslooks like yourenvironment.prod.ts.environment.tsis used when running your application withng serve.environment.prod.tsis used when you runng build --prod. Having the same entries for both could cause some confusion.
Thanks bunyamin,
I updated database and i have a new error when login. Please show me how to fix it

It seems that you encountered a CORS error. Please check the
IdentityServerClientCorsOriginstable and make sure thatdmsaut.hanwhalife.com.vn:501is within allowed CORS origins.
Dear bunyamin,
Thanks you for your answer quickly.
I have already update IdentityServerClientCorsOrigins table but the error still in here

Where else can i check?
Dear support team,
I want to change status all of file in the folder.
I have a button Sign All like this
And I try to create signAllFile function in NavigatorService and FileManagementComponent but not success all.
If I use signAllFile func in NavigatorService, code debug don't run into service "this.service.signAll(this.signFileInput))"
And If I use signAllFile func in FileManagementComponent, my frontend has error like this
Please show me how to call my func in default-file-management-toolbar-actions.
Thanks bunyamin ,
It's work.
Hi support team,
I converted the return parameter to PagedResult from ListResult of DirectoryDescriptorAppService.GetListAsync in backend.
And frontend angular I alse converted the return parameter to PagedResult from ListResult of directory-descriptor.service.ts
file-management-folder-content.component.ts have also this.list.maxResultCount = Infinity;
But i don't see paging tool.
How can I have to change file-management-folder-content.component.html to do that

Hi bunyamin,
I see the DirectoryDescriptorService::getContent method gets called when a pagination event occurs. but I don't know how to get page number to pass into backend. When I click page number "2". I want to pass param "2" into backend. How i can get number "2"?