Click here to Skip to main content
15,891,136 members
Everything / MVC / MVC3

MVC3

MVC3

Great Reads

by Sunasara Imdadhusen
MVC Logging series
by Amey K Bhatkar
How to create TreeView in MVC
by Yogesh Kumar Tyagi
Using this tip, we easily create Thumbnail of “txt, doc, docx, xls, xlsx, ppt, pptx, rtf” files in ASP.NET MVC
by Monjurul Habib
How to add namespaces for Razor pages

Latest Articles

by Stas Wolski
This article describes how to implement a meeting room booking system in an ASP.NET MVC project with dhtmlxScheduler.
by Muhammad Albedewy
Validate Anti-Forgery in 6 easy steps
by LKC05
ASP.NET MVC vs Webforms
by NavnathKale
Extending AngularJS with the help of TypeScript to make it even sweeter

All Articles

Sort by Score

MVC3 

6 Aug 2011 by Sunasara Imdadhusen
MVC Logging series
15 Dec 2013 by Amey K Bhatkar
How to create TreeView in MVC
12 Mar 2014 by Yogesh Kumar Tyagi
Using this tip, we easily create Thumbnail of “txt, doc, docx, xls, xlsx, ppt, pptx, rtf” files in ASP.NET MVC
18 Sep 2011 by Monjurul Habib
How to add namespaces for Razor pages
19 Jul 2013 by Mikhail-T
How to convert string to text file and return it back to user as a result of a controller action
3 Apr 2013 by Nithesh AN
Printing an RDLC file in ASP.NET MVC3 automatically by converting into PDF and using Acrobat Reader.
22 Nov 2015 by Anil Sharma1983
Internet Explorer 8/9 jsonresult method treats response as downloadable json result
18 Jan 2012 by Namlak
string blah = string.Join(",", cities.Select(c=> c.Name));
9 Feb 2012 by Winstan
MVC3 webgrid does not return rows collection, here is a tip to get several objects selected
26 Nov 2011 by amitthk
For ASP.NET MVC, HERE! is a much cooler approach:Basically, we use Ajax.ActionLink like this:The controller takes care of both the possibilities (Normal Post...
8 Sep 2012 by suhas.shiv
Custom CheckBoxList in ASP.NET MVC3
28 Feb 2016 by Er. Puneet Goel
When you are dealing with Date&Time input from user, it's always complicated to handle the Date&Time format. You are not sure about how you will handle the user input format. So, here is the solution.
13 Feb 2012 by raphadesa
Hi, well first I wanted to post it as an article, but Code Project refused it saying it would be too short...If you want to see the original url, please goto:http://ms-technologies.blogspot.com/[^]There's also the code for download there...Thanks, Raphaël...
27 Aug 2012 by Omar Gameel Salem
MVC3 Buddy Classes issue with validation attributes.
14 Nov 2013 by Amey K Bhatkar
How to fill dropdown in ASP.NET MVC 3?
24 Aug 2013 by Ankit Sarkar
Input masking in model using data annotation
17 Apr 2014 by gunjan k saxena
This tip will help to create an action filter to compress the contents like Json, partial view, etc.
11 Dec 2011 by Handy Torres
Model Binder for ASP.NET Web Forms
12 Mar 2012 by member60
Autocomplete behaviour in a strongly typed view of ASP.NET MVC3
18 Jan 2012 by wgross
I would just use:string.Join(",", cities.Select(c=>c.Name))Since Version 4 of the Framework there is an overloaded versions of string.Join for IEnumerable too. It uses a StringBuilder internally and doesn't insert a seperator after the last element as well.I could't find the Join method...
24 Jan 2012 by Mikhail-T
A short one-line way to convert Array or List of any data into custom string via LINQ
9 Nov 2013 by Amey K Bhatkar
Routing in ASP.NET MVC Tutorial for beginners
21 Dec 2013 by Amey K Bhatkar
How to create Tab View in MVC3?
26 Nov 2011 by amitthk
Post the page forms using Ajax intead of Normal Post (Like when using MVC)
3 Apr 2012 by Mikhail-T
Tutorial on how to create simple extension that converts view model propety name to string
14 Feb 2012 by raphadesa
A simple MVC 3 Helper for handling Hover Images...
15 Apr 2014 by Aravinda Sringarapuram
One of the ways of persisting values across requests in MVC involves interacting with Session, an instance of “HttpSessionStateBase”.
29 Jan 2017 by LKC05
ASP.NET MVC vs Webforms
6 Jan 2012 by Kethu Sasikanth
How to select an initial value for a DropDownList in MVC3 App
24 Jan 2012 by Richard Deeming
If you're stuck with .NET 3.5, you can use the Aggregate extension method[^]:string cities_string = cities.Aggregate(new StringBuilder(), (sb, c) =>{ if (0 != sb.Length) sb.Append(", "); sb.Append(c.Name); return sb;}, sb => sb.ToString());