Posts by Julio Cesar S. Cunha • 11 points
2 posts
-
0
votes1
answer132
viewsA: Add form to subscribe to the newsletter in c#
See if that’s what you want : Model public class Pessoa { // No seu caso, acho que esse campo é opcional. public int Id { get; set; } [Required(ErrorMessage = "Campo Obrigatório")] public string…
-
1
votes1
answer796
viewsA: How to authenticate user via AD or via SQL Server Database
You could implement using the 2 types of AD and Database logins. In the login screen the system "search" the user in the AD: If it exists, it makes the procedure to validate the user (check if user…