Posts by Rodrigo Fernandes • 11 points
2 posts
-
1
votes2
answers221
viewsA: Dropdownlist in views Asp.net mvc of the validation error
You can do in the scope of an Action that receives the template of your submitted fomulário [HttpPost] public ActionResult Edit([Bind(Exclude="Banco")]CompanyDto model) { // ... } You can also…
-
0
votes1
answer478
viewsQ: Session issues in MVC application using Actionfilters
I have a problem in my application ASP.Net MVC, on authentication. Let’s go through steps: 1) I have my login screen /Login/Index simply log in, if found in the database MySQL, and starts the…