Posts by Daniel Santos • 257 points
8 posts
-
1
votes2
answers4619
viewsQ: How do I know if a server is using TLS 1.0 or 1.1?
I recently received an email asking to update the TLS version of my site from 1.0 to 1.1 or higher. I find it strange why my site uses SSL and not TLS. How can I verify which of these protocols are…
-
1
votes2
answers620
viewsA: How to integrate ASP.NET MVC Core with Vue.js?
The simplest and least "wilful" way is to pass the JSON from the object to the view. for example: <script> var app = new Vue({ el: '#clienteForm', data: @Json.Serialize(Model) })…
-
1
votes0
answers211
viewsQ: How to check customer validation on in an ASP.NET Core MVC 2.0 application to recognize EN standard
I’m having trouble setting up client-side validation gift my app. I’d like customer validation by using jquery.validate.unobstrusive, accept numbers and dates located in. I have already made this…
-
1
votes1
answer1494
viewsQ: How to make an ASP.NET Core MVC application for Portuguese?
I would like to be able to make an application in Portuguese. I was already doing this with ASP.NET MVC 5 in a super simple way through a Nuget installation. But I did not find anything similar for…
-
4
votes1
answer532
viewsQ: In C#, how to use the pluralize method in Portuguese?
in a C# application I’m looking to pluralize some words in English. But apparently there is no native support for en-BR. var pluralizador =…
-
1
votes1
answer469
viewsQ: How to configure Context to put table name in plural in en-BR?
I am in an ASP.net MVC 5 application, configuring a class DbContext. When the EF generates the database, the tables referring to the application objects are getting the names in the plural in…
-
4
votes1
answer238
viewsQ: How to do Scaffolding in ASP.Net MVC with text and resources in en-BR?
How to do the texts generated by Scaffolding of ASP.Net MVC to be texts in? Note: It is not using ASP.NET MVC resources en-BR. Resources only translate automatically generated messages, and are not…
-
1
votes1
answer3043
viewsQ: How to use Microsoft ASP.Net MVC in English?
I found this package, but I don’t know how to use it: Microsoft ASP.NET MVC English Resources Microsoft.AspNet.Mvc.en https://www.nuget.org/packages/Microsoft.AspNet.Mvc.pt-br/ How to use the…