Created a project on v9.1.0 using ASP.Net Core 3.1 & Angular.
Application both frontend & backend running on the windows machine correctly but not showing login page. Showing an Internal Error. Backend swagger running on 22742 port also login using Authorize option in swagger. From network found that http://localhost:4200/AbpUserConfiguration/GetAll returning error having "message":"An internal error occurred during your request!"
http://localhost:4200/AbpUserConfiguration/GetAll
{"result":null,"targetUrl":null,"success":false,"error":{"code":0,"message":"An internal error occurred during your request!","details":null,"validationErrors":null},"unAuthorizedRequest":false,"__abp":true}
Please anyone help me to fix the issue.Thanks in advance
Hi,
while downloading from below link, i got error states that
https://github.com/aspnetboilerplate/as ... EfCoreDemo.
"MultipleDbContextEfCoreDemo.EntityFrameworkCore(load failed)"
Unable to find project information for 'E:\aspnetboilerplate-samples-master (1)\aspnetboilerplate-samples-master\MultipleDbContextEfCoreDemo\src\MultipleDbContextEfCoreDemo.EntityFrameworkCore\MultipleDbContextEfCoreDemo.EntityFrameworkCore.csproj'. Inside Visual Studio, this may be because the project is unloaded or not part of current solution. Otherwise the project file may be invalid or missing targets required for restore.
Could you please resolve this issue.
I have a requirement on uploading excel files and save it in the folder or cloud storage.
Hi @ismcagdas Where can we remove ui-date-format attribute?
You already implememted date functionality in tenant. While you editing the tenant, you are showing proper format in SubscriptionEndDateUtc field. We just used the same code. But it shows wrong date or invalid date. Did you remove the ui-date-format attribute for this field that you have in tenant form.
Html: <input id="CreateDateUtc" type="datetime" #CreateDateUtc name="CreateDateUtc" class="form-control"
bsDatepicker
[(ngModel)]="organization.creatioN_TIME">
Ts: if (this.organization.creatioN_TIME) { (this.createDateUtc.nativeElement as any).value = this.organization.creatioN_TIME.format('L'); }
I hav used it in ngOnInit
ngAfterViewInit(): void { debugger if (this.organization.creatioN_TIME) { debugger (this.createDate.nativeElement as any).value = this.organization.creatioN_TIME.format('L'); }
Getting error, Type string is not assignable to type date
In ts file,
@ViewChild('createDate') createDate: ElementRef; @ViewChild('Expirydate') Expirydate: ElementRef;
In Html file,
<input id="createDate" type="datetime" #createDate [ngClass]="{'edited':organization.creatioN_TIME}"
name="createDate" class="form-control" bsDatepicker [(ngModel)]="organization.creatioN_TIME" autocomplete="off">
creationTime Result: Tue Mar 26 2019 05:30:00 GMT+0530 (India Standard Time)