Posts by Leonardo Gasparini • 56 points
5 posts
-
0
votes1
answer78
viewsA: SQL gets Double with "Comma" tab instead of "Dot"
In that case you have some options: You can change your application by placing a Mask in the Text Field just accepting the '.' You can in the controller of your application add a parse to replace…
-
0
votes3
answers215
viewsA: Problems with connectionString in ASP.NET C# CORE
ASP.NET core has a better function for finding Connection strings. I suggest using: Configuration.GetConnectionString("{NomeDaSuaConnectionString}") You have more information on how to connect your…
-
0
votes1
answer269
viewsA: Is there any way to translate the months into the input type date?
Probably your component is in English because your browser or operating system is using English as its native language, it is interesting to check this.
-
0
votes1
answer43
viewsA: How to insert string c# in Cefsharp script
The script you are trying to execute is in the syntax of jquery, probably the page will not recognize this naturally, so I suggest you write pure javascript for this, an example would be to do so:…
-
1
votes1
answer53
viewsA: Save form Razor
Hello, Look there are several ways to treat this, I would recommend that a function be done in jquery that cleans your form by clicking the save button, but this would be efficient if the validation…