Azure Blob Storage with ASP.NET MVC

How to work with Azure Blob Storage and ASP.NET MVC Blob Storage is a part of Microsoft Azure platform. We can use Azure Blob Storage to store our unstructured data in the cloud as objects. We can store files like text files, media files, documents etc. In this article we are discussing about how to…

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…

Date Time formatting and conversions in ASP.NET

Sometimes we have to do some calculations with date time objects in our applications. In that case we have to use Date Time formatting and conversions to accomplish the tasks. In this example we can see some commonly used methods to do the conversions and manipulations. This covers the formatting including : Convert string into…

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…