InterviewSolution
Saved Bookmarks
| 1. |
How to use Jquery Plugins in ASP.Net MVC validation? |
|
Answer» We can use dataannotations for validation in ASP.Net MVC. If we want to use validation during runtime using Jquery then we can use Jquery plugins for validation.Eg: If validation is to be done on customer name textbox then we can do as : $('#CustomerName').rules("add", {required: true,minlength: 2,messages: {required: "Please enter name",minlength: "Minimum length is 2"}});
|
|