Posts by Angélica Flausino • 182 points
15 posts
-
2
votes1
answer124
viewsA: Xamarin.Forms Ios Webviewrenderer sharing Cookies
Well after I broke my head, I was able to solve it by simply replacing Wkwebview with Uiwebview. What it seems is that Wkwebview is bugged to access Nshttpcookiestorage.Sharedstorage, as discussed…
-
0
votes1
answer124
viewsQ: Xamarin.Forms Ios Webviewrenderer sharing Cookies
I am using a Webviewrenderer to configure the cookie policy and also to share cookies from an Httpclient login request. Turns out no matter how much I set: var cookieJar =…
-
0
votes1
answer757
viewsQ: ASP.NET MVC & WEB API token authentication
I have a question about the token bearer. I have two scenarios in my application. 1º is an admin panel that works with ASP.NET MVC and Angularjs and the 2nd is the WEB Api that exchanges requests…
-
1
votes1
answer468
viewsA: How to use Cascade Delete between two tables?
When you put in your FK on DELETE CASCADE when you delete the table the effect will be cascade, ie if delete the Product your photos will be deleted automatically and you do not need to delete in…
-
1
votes1
answer416
viewsQ: How to insert arrays inside angular objects?
Let’s say I have a vehicle object that has the following attributes converting my class c# to Json: { "UsuarioId": 0, "TipoId": 0, "MarcaId": 0, "ModeloId": 0, "VersaoId": 0, "Quilometragem": 0,…
-
0
votes3
answers115
viewsA: Page rendering Asp.net Disabledcssclass
What you can try is to put the attribute is to use the class="btn btn-sm btn-danger disabled" and by jquery remove the class as user actions. <script> $( "#btnEnviar" ).onclick( function(){ $(…
-
1
votes9
answers12142
viewsA: Search via ajax during input text ( autocomplete )
I combine Angular Material with Webapi, but I use Asp.net mvc https://material.angularjs.org/1.1.1/demo/autocomplete To search cities and states, you can put a delay to delay the query and combine…
-
1
votes1
answer83
viewsQ: ASP.NET MVC with Angularjs and Layoutpage
I am developing an application using the best of both worlds of Asp.net MVC and Angularjs. I do the database requests with Webapi which works very well. But now I have added an angular module in the…
-
0
votes2
answers584
viewsA: Angular with ngRouter does not work when I type in Browse
I was having a problem with ngRoute in an ASP.NET MVC web application, I decided to pass the parameters I needed to viewbag. public ActionResult Detalhes(int id){ ViewBag.ClienteId = id; return…
-
5
votes2
answers5495
viewsA: What are Async methods?
These are asynchronous methods as @Maniero mentioned, just to complement the explanation and you understand better, we often use async to consume a service Httpclient in a Winforms or WPF…
-
3
votes2
answers55
viewsA: Best Way to Implement Dataannotations
If you just leave it like this: [Required, StringLength(150, ErrorMessage = "Insira no máximo 150 caracteres")] The custom message will shoot only for the string with a maximum size of 150…
-
0
votes0
answers73
viewsQ: Angular http method: 'POST' is not sending the $Scope object
I’m having a problem in the angular http method post, I’ve seen several tips but none works. Follow the code: $scope.cadastrar = function () { $http({ method: 'POST', url:…
-
0
votes1
answer98
viewsQ: How to create a Products table that has several prices?
Someone would know how to map a Products table, and the product has different prices for each type of parcel the customer chooses. For example I created a table called PRICES and in it there is FK…
sqliteasked Angélica Flausino 182 -
0
votes1
answer218
viewsQ: Connection String not found WPF Entity Framework
I am in a WPF project using some MVVM practices, I am using Entity Framework database first and the Connection string is already in the app.config, I have already followed all the procedures I have…
-
1
votes0
answers212
viewsQ: ASP.NET MVC Project does not work on Godaddy Hosting Windows Plesk
Hello, I’ve read enough questions here and I’ve tried everything, but my MVC application does not run anymore with prayer on the Godaddy server, I’ve changed the file permission, I’ve entered the…