Posts by Jr. Pacheco • 181 points
7 posts
-
0
votes0
answers12
viewsQ: Nameandidprovider does not find reference in the class context - ASP.NET Core MVC
I need to do a custom implementation for the input field, so I created the following class: [HtmlTargetElement("input", Attributes = "tm-for", TagStructure = TagStructure.WithoutEndTag)] public…
-
1
votes1
answer43
viewsQ: API and XAMARIN project
Guys I have a Solution where to stand all the architecture to display my API. The project that will consume this API will be in XAMARIN. My question is: I must create within the Solution this…
-
0
votes1
answer191
viewsA: Return AD physicalDeliveryOfficeName using LDAP with Java
Check in the section Users or Users. Some will not possess this attribute.
-
1
votes1
answer27
viewsA: error in running c#Asp.net Entity application
Try installing System.Net.Http v 4.0.0 by the nuget package in the project.
-
4
votes2
answers404
viewsA: Publication of ASP.NET MVC Project
I believe that at first you could use AZURE to publish your web application. Create a free account on AZURE and create your web application there. After that you can publish your web application…
-
1
votes1
answer353
viewsQ: Save JSON file information to database
I think about the possibility of a Web system saving information from a register in a JSON file on the client’s device, which would later be sent to the BD. This will happen when the client is in an…
-
7
votes2
answers12475
viewsA: What is the Antiforgerytoken?
In case you need to pass the information via AJAX with jQuery can do so:~ var token = $('input[name="__RequestVerificationToken"]', form).val(); $.ajax({ url: "/Controller/Action", type: "POST",…