Hi,
I always gets the 404 on the above URL. I am already signed with cxs-mahendra
Hi there,
I am trying to import users from excel, but I am getting the below error: I am using ASPNetZero Version 8.0 with Angular.
POST http://localhost:22742/Users/ImportFromExcel 401 (Unauthorized)
Please assist...
Regards, Mahendra
Hi,
Which code do you require ? Page code where password control textbox is or the JS code where I am getting the error.
Basically, I am looking if my Attribute defined and attached to C# DTO should get converted to decorators in client code....
Hi there,
I have a Dto. on it's property, I have set a custom attribute like below
`public class CreateOrUpdateProductDto : iVendBaseDto { public string EntityId { get; set; }
[AllowedExcelOperation(true, false)]
public string Description { get; set; }
.....
.....`
Now in angular when I run the refresh.bat, I am not getting these attributes in the proxies being generated. See below:
export class CreateOrUpdateProductDto implements ICreateOrUpdateProductDto { entityId!: string | undefined; description!: string | undefined;
.......
.......
.
Am I doing something wrong here, or the attributes never get translated to proxies. If it never gets translated, then could you please let me know what is the best option to get the attribute defined in server side (like on a dto) to client side.
Hi,
In AppService I am doing the following steps
Now if a see the SQL profiler, the query (essentially a SP) that I am executing in step 4 gets executed first instead of last. What mistake I am doing and how can I ensure the execution sequentially. Essentially, on the 4th step, I am trying to execute a stored procedure but this procedure should be executed only after step2 and step3 and all the three steps in a single transaction.
Please help....
Hi @maliming,
Yes my javascript code is executed before common-scripts.js
Hi,
I am using using Asp.Net core with JQuery. I am trying to implement password complexity on one of my textbox. I have below code in my my .cshtml
<script>
$(document).ready(function () {
var _passwordComplexityHelper = new app.PasswordComplexityHelper();
});
</script>
I am getting the below error when the page is rendered.