Bootstrap custom themes – Introduction

Bootstrap is a front-end framework which is freely available but developed by Twitter. Using Bootstrap custom themes, we can change the look and feel of our applications very easily. It provides you the Grid System which is very powerful when it comes to the front-end development. It makes your web application responsive, means that application…

Modal popup for MVC applications

Modal popup is a good way to interact with the end user. In a way we can show notifications or any UI components to the end users using popups. However its very simple to implement a modal popup for MVC applications. First we will create a MVC solution in Visual Studio and run the project.…

Logging Application Block

How to use Logging Application Block in Enterprise Library to log the information Logging the errors, exceptions and other information is a common thing in software development. In .NET environment we can easily use Microsoft Enterprise Library Logging Application Block to log any information in web applications or desktop applications. This application component is very…

Jquery Autocomplete text box in MVC

How to implement Jquery autocomplete in MVC Autocomplete texts boxes are very useful when a user searches on the website. Jquery autocomplete function suggests the already available data to the user and minimize the time for the search. I have created a new controller for this and added a view. In the controller we have two…

Upload files in ASP.NET MVC

How to upload files in ASP.NET MVC In a previous article we already discussed about how to do a file download in ASP.NET MVC. Now lets see how to upload files with MVC. For this Im using an example of very simple user registration form with a profile picture upload. First I have added a…

Add custom script files to MVC project

How to add custom script files to your project. Writing inline javascripts is not a good practice when it comes to larger projects and its always recommend to use separate scripts files(custom script file (s)) for bigger scripts. Adding a custom script is not much complicated in ASP.NET MVC but still we have to follow some…