jQuery has many different types of widgets which makes it easy to add different types of functionalists in our applications.One commonly used widget is Datepicker. Most of the applications provides user the option to select the dates.So instead of … [Continue reading] about Datepicker in jQuery
Reflection in C#
When a c# application is compiled an assembly is generated .This assembly contains the compiled source code and the metadata.The source code in the assembly is in the form Intermediate Language or IL.The metadata that the assembly contains is … [Continue reading] about Reflection in C#
Attributes in c#
Attributes are one of the main features of c#.Attributes can be used if we want to attach metadata to the program elements such as class or method.Attributes are used with reflection to retrieve the metadata at runtime. Attributes are classes which … [Continue reading] about Attributes in c#
Using the jQuery ajax method in MVC
jQuery includes several methods for implementing the ajax functionality in our applications.In the last post we looked at the jQuery get() and post() methods.These methods ,as per their names, makes GET and POST requests to the server.Behind the … [Continue reading] about Using the jQuery ajax method in MVC
jQuery get and post ajax methods in MVC
AJAX or Asynchronous Javascript and XML is used for communication between the client and the server.Using AJAX the parts of a web page can be updated without a full page refresh.This not only results in less data transfer but also results in a … [Continue reading] about jQuery get and post ajax methods in MVC