Posts by Artur Peixoto • 41 points
4 posts
-
-1
votes1
answer68
viewsA: List of DB clients on the program page in C#
Dude, from what I understand, you want me to show you a list of 10 users and then pass the page on that list, that’s it? I made an example using Pagedlist. I’ll leave an example of how I managed to…
-
0
votes1
answer55
viewsA: Javascript formatting value BRL
I found a solution with Reg Exp. You use the regular expression to locate the numbers values and replace them with Real formatting. var test = 'R$ 1.700,90'; function getMoney( str ) { return…
-
-2
votes1
answer199
viewsA: I’m working with bootstrap and my pull-right doesn’t shift the div Nav to the right?
See if you can figure it out by putting it on css: menu{ display: inline-flex; }
-
4
votes1
answer314
viewsA: View call @model of the controller
Dude, I don’t think you’re getting the object to View, that’s it? //Instância para acessar o banco de dados private ApplicationDbContext ctx = new ApplicationDbContext(); public ActionResult…