Always remain updated about current software development trends

Articles having tag: ASP.NET MVC

Getting Started with CSS Media Queries

If you've ever printed a page and noticed that it looks different than the actual page displayed in the browser you've more than likely witnessed a CSS media type in action. By using CSS media types such as "print", backgrounds, navigation bars, and...

ASP.NET MVC Authentication - Customizing Authentication and Authorization The Right Way

We're continuing the ASP.NET Authentication series (yes, I'm doing a few overlapping series, and yes, it's making me dizzy). The previous post coveredGlobal Authentication and Allow Anonymous. This one continues with a simple tip that can be summed up as follows:...

Using Razor V2 in ASP.NET MVC 3

       Introduction:                     Razor view engine's popularity and usage is continuously increasing because it...

An introduction to ASP.Net MVC 4.0

I have been looking into ASP.Net MVC 4.0 lately and I thought it would be a nice idea to create a small ASP.Net MVC 4.0 application and write a post about it. So this is going to be a rather long post that will show you with a hands-on example how to build...

To the darkside

I realize it has been quite some time since I last posted anything. As with everyone else, I am extremely busy and have been for a long time. What is the Darkside? I bought a MacBook Pro. There. I said it! I feel dirty for saying it. This is not a something...

Free 1-Month Subscription to the ASP.NET MVC with EF Code First, HTML5, and jQuery Course

Pluralsight just started running an offer that allows you to get free access to the Building ASP.NET MVC Apps with EF Code First, HTML5 and jQuery course for a month. That's plenty of time to watch the entire course\u2026.multiple times if you wanted!...

File Upload in ASP.NET MVC3

If you are a web developer you often need to upload file on the web server or database. In today's post I am going explain how we can upload file in ASP.NET MVC 3 with razor syntax.So, first thing we need to create a view that will contain the file upload...

Turning Special Collection types (HttpCookieCollection) to Generic List

I’m working on some new course material for ASP.NET MVC 3.  I have the need to take some of the ASP.NET special collection properties and turn them into a generic list.  For example, the Request.Cookies property is type as HttpCookieCollection...

Dynamically creating meta tags in asp.net mvc

As we all know that Meta tag has very important roles in Search engine optimization and if we want to have out site listed with good ranking on search engines then we have to put meta tags. Before some time I havebloggedabout dynamically creating meta tags...

Creating dynamic breadcrumb in asp.net mvc with mvcsitemap provider

I have done lots breadcrumb kind of things in normal asp.net web forms I was looking for same for asp.net mvc. After searching on internet I have found one great nuget package for mvpsite map provider which can be easily implemented via site map provider. So...