Tuesday, 21 March 2017

c# Dictionary Part3 (Refactoring if else condtion)

12:16 Posted by Nikesh No comments
In this post we will cover refactoring of nested if else in large sensitive codes. Large sensitive here means when we have a code where only conditioned data present of static key ids in large if else file. To fix this we can again use dictionary as a good part of key value pair of organizing...

Wednesday, 8 February 2017

C# Dictionary Part2

In this post we will cover simple steps to get  table data from Sql query And bind data to select element Using Jquery And MVC using dictionary and without using models. To do this we can use  ajax which will get table data from sql table and bind to select and create a dictionary...

Wednesday, 18 January 2017

Tuesday, 17 January 2017

Jquery Validation

12:06 Posted by Nikesh No comments
Hi, Today we practice on validation from beginner to advanced. First we will grab js file required files jquery.js and jquery.validate.min.js Jquery has validate function where we can write rule for our controls and gives properties to validate and in case if it not validate we can write error messages. lets create a basic validation code in jquery.       <form name="validationform"...