Posts by Braytiner • 176 points
5 posts
-
3
votes2
answers139
viewsA: What are the consequences of leaving the system without closing the tables?
Does not corrupt the bank, but if any operation remains active, you can leave the locked, "locked" bank for other operations in the same table/record. This type of behavior varies from one database…
-
1
votes1
answer51
viewsA: Custom validation function Html5
Have you seen anything about jquery validate and jquery validate unobtrusive? They add a validation layer and allow you to use the default form of browser notification
-
0
votes1
answer252
viewsQ: Validate Datepicker containing date only
I use Asp.Net Core MVC (Razor + Jquery Validate + Unobtrusive). I display in a Datepicker only the date part of a Datetime field through the following code in my Viewmodel: [Required(ErrorMessage =…
-
2
votes1
answer1837
viewsA: Validate dates with Jquery validate for dd/mm/yyyy
Create a file named methods_pt.js with the content below. Add the file to the location where you call jquery (after) See another way to do in: https://github.com/aspnet/Docs/issues/4076…
-
0
votes2
answers380
viewsA: Asp.net core 2.0 authentication with cookies
Thus: @User.Identity.Name If you want to know if the user is authenticated: @User.Identity.IsAuthenticated If you want to know if the user belongs to a profile type (Scroll):…