Author: admin

  • Blog
  • Author: admin

CDN in ASP.NET MVC bundling

ASP.NET MVC contains great features and Bundling is one of them. The Bundling and Minification features allow you to reduce number of HTTP requests that a web page needs to make by combining individual scripts and style sheet files. It can also reduce a overall size of bundle by minifying the content of application.   From

Expression builder in ASP.NET 2.0

ASP.NET introduced new declarative expression syntax which allows you to substitute values into page at run time called Expression builders.There are five type of expression builder in asp.netAppSettingsExpressionBuilderConnectionStringsExpressionBuilderResourceExpressionBuilderAppSettingsExpressionBuilderConnectionStringsExpressionBuilderI have found a great article that describes the this expression builder in details.here is the link.. http://www.beansoftware.com/ASP.NET-Tutorials/Expression-Builder.aspx

Formating date in asp.net1.1 datagrid.

Some time we need to display the dates in data grid. And we have to format it as per the requirement.here is the way to format link in the data grid.First Select data grid and open property window by pressing f4. Then go to the.Click on the property builder then click the columns and select

What is Inversion of control and why we need it?

Most of programmer need inversion of control pattern in today’s complex real time application world. So I have decided to write a blog post about it. This blog post will explain what is Inversion of control and why we need it. We are going to take a real world example so it would be better