Greetings,
Is there a different between using Ajax and jquery to do input valuation with ASP.NET?
For example,I want to input mask. I can use ajax maskededitextender or jquery masked input plug in to do the mask.
is there a different between using any one of these two??
One reason I can think of is that jQuery validation plugins are light weight.Asp.net Ajax toolkits validation controls are heavy as they download lots of script resource files.That said , I always prefer to use plain javascript code snippets to validate uses input data.It helps me in keeping my code clean and gives me more control.Javascript + Regex can be used to validate almost any kind of input data.I prefer to use jQuery , Asp.Net Ajax for more advanced scenarios.