Most of the web applications contains more content then what can be displayed on a single page to the user.Also the application may have different groups or categories related to the different entities in the application.In an e-commerce site for … [Continue reading] about Jquery ui tabs
Dialog in jquery
In javascript we use the alert or confirm message box to display message to the end user.Though it is the commonly used way to show informational message to the end user it has the following shortcomings Message box may defer from browser to … [Continue reading] about Dialog in jquery
Datepicker in jQuery
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#