MVC Solutions
Monday, December 18, 2017
Tuesday, July 25, 2017
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.
Below are the problems you may face during implementation of Bundling:
Problem 1: Browser cache problem/ User not getting latest changes of resources (CSS/JS)/ User need to clear cache forcefully to get latest changes every time
Problem 2: 404 error after implementing bundling (resource not exists on given path or your images path is being changed due to bundling implementation)
Problem 3: Bundling stopped working on HTTPS Site (Website is working on development properly as soon as it is deployed on HTTPS(production server) bundling is not working and gives 404 resouce not found error
Problem 4: 403 -Access denied when using Bundling
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.
Friday, November 11, 2016
Telerik Kendo Grid with .Net MVC Problem's Solutions (IE 8/ Internet Explorer 8 Supported)
Create a grid using "kendoGrid()" function in java script with ajax call which fetch data from "MVC Action" method
1. Generating a simple Kendo Grid
2. Sorting in a Group using client side paging
3. Customized excel export functionality for "Kendo Grid" with "excelExport" event in "KendoGrid()" function (also supported in IE 8)
4. For MVC application, server side pagging in kendo grid, sorting in group, excel export with all data (also supported in IE 8)
Or
Server side pagging using MVC application to display only sliced data for selected page
Tuesday, July 14, 2015
Subscribe to:
Posts (Atom)
Static Keyword in .Net
Static Class: Ø A static class cannot be instantiated Ø Only contains static members (property/methods/fields) ...
-
Static Class: Ø A static class cannot be instantiated Ø Only contains static members (property/methods/fields) ...
-
Create a grid using "kendoGrid()" function in java script with ajax call which fetch data from "MVC Action" meth...
-
C Programming is the base of your programming logic. You can find complex problems solutions here and you can also type your c/c++ ...