Saturday, February 11, 2017

Bundling in MVC

Bundling is the technique to request a web page from server with less number of requests for the resources(js/css) required on that page which makes page load performance much better. If you are facing browser cache problem or need to forcefully clear your browser cache to reflect your files (.js/css) changes every time then best option is implement bundling in your application. Because bundling will take care of all those manual process and reflect your changes without clearing browser cache forcefully.
   

Saturday, January 7, 2017

C Programs



C Programming is the base of your programming logic. You can find complex problems solutions here and you can also type your c/c++ related programs in comment box and we will try to provide you solutions as soon as possible here.



Static Keyword in .Net

Static Class: Ø    A static class  cannot  be  instantiated Ø    Only  contains   static members  (property/methods/fields) ...