Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "kalidarscope"

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.

How to get the latest? When I Click on the link https://github.com/aspnetzero/aspnet-zero-core/pull/2300 it's saying

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,
  &lt;input id=&quot;createDate&quot; type=&quot;datetime&quot; #createDate  [ngClass]=&quot;{&#39;edited&#39;:organization.creatioN_TIME}&quot;
                            name=&quot;createDate&quot; class=&quot;form-control&quot;  bsDatepicker [(ngModel)]=&quot;organization.creatioN_TIME&quot; autocomplete=&quot;off&quot;&gt;
                          

creationTime Result: Tue Mar 26 2019 05:30:00 GMT+0530 (India Standard Time)

Showing 31 to 40 of 121 entries