Posts by Brunialti • 76 points
2 posts
-
1
votes4
answers1320
viewsA: Long processes in C#
I do not believe that it is the best solution to process an already uploaded file. Ideally it would just move the file to a folder on your server and have a service that does Processing for you.…
-
5
votes3
answers523
viewsA: Dynamic display of mandatory, optional or non-existent fields
In his Model implement the Interface IValidatableObject. public class MyModel : IValidatableObject public int Propriedade1 { get; set; } public int Propriedade2 { get; set; } public…