DotNetShoutout - Stories tagged with MVC
3
Shouts

Dean Hume - ASP.net MVC HTML5 Toolkit is now available as a Nuget Package

published 841 days, 15 hours, 55 minutes ago posted by deanomachinodeanomachino 843 days, 20 hours, 29 minutes ago
Thursday, February 03, 2011 9:21:07 PM GMT Tuesday, February 01, 2011 4:47:13 PM GMT
ASP.net MVC HTML5 Toolkit is now available as a Nuget Package Great news for those of you out there that use the MVC HTML5 Toolkit - it is now available to download as a Nuget package. If you haven't already had a look at the MVC HTML5 Toolkit, please read this article for more info or visit the Codeplex site. For those of you out there that haven't yet heard of Nuget or started playing with it yet, please go to the website for more on how to install it. Basically, it's a free open source... (more)
category: Web Dev | clicked: 3 | comment | | source: deanhume.com
tags: C#, Asp.net MVC HTML5 Toolkit, CodePlex, HTML 5, MVC, NuGet
2
Shouts

ASP.NET MVC Error Handling using the HandleError Filter

published 850 days, 17 hours, 41 minutes ago posted by JudoJudo 850 days, 23 hours, 21 minutes ago
Tuesday, January 25, 2011 7:35:38 PM GMT Tuesday, January 25, 2011 1:55:39 PM GMT
ASP.NET Errors can be effectively handled using the HandleError filter, which specifies how exceptions which are thrown in a controller method are to be dealt with (note that ASP.NET MVC supports method filters, which allow for annotating controller methods to change their behavior). Prior to using the HandleError filter, you will need to enable custom error handling for your ASP.NET MVC app in the web.config file by adding the below line in the system.web section: The below code snippet show the ... (more)
category: How To | clicked: 1 | comment | | source: www.aspnet101.com
tags: ASP.NET MVC, handleerror filter, error handling, MVC
11
Shouts

CompareAttribute in ASP.NET MVC 3 - Compare Properties During Validation - David Hayden

published 864 days, 18 hours, 53 minutes ago posted by iftekharahmedamitiftekharahmedamit 865 days, 19 hours, 58 minutes ago
Tuesday, January 11, 2011 6:23:59 PM GMT Monday, January 10, 2011 5:18:30 PM GMT
Yesterday I was talking about IValidatableObject in DataAnnotations and how ASP.NET MVC 3 has direct support for it: ASP.NET MVC 3 Validation and IValidatableObject. I mentioned that you can use IValidatableObject for those validation rules that are based on the entire model. The example I showed ( with caveats ) was for validating that ConfirmPassword and Password were the same during user registration. I also mentioned that you c... (more)
category: Web Dev | clicked: 11 | comment | | source: davidhayden.com
tags: ASP.NET MVC 3, ASP.NET MVC, Validation, ASPNETMVC, MVC, ASP.NET
3
Shouts

Why you should always use a CAPTCHA :: Chris Poulter

published 874 days, 8 hours, 26 minutes ago posted by chrispoulterchrispoulter 876 days, 23 hours, 40 minutes ago
Sunday, January 02, 2011 4:51:00 AM GMT Thursday, December 30, 2010 1:36:30 PM GMT
Having Googled the question "should I use Captcha on my site" I was presented with quite a few blog entries arguing that any benefits... (more)
category: Web Dev | clicked: 0 | comment | | source: www.chrispoulter.com
tags: Captcha, MVC, ASP.NET
5
Shouts

ASP.NET MVC: Using ProfileRequiredAttribute to restrict access to pages

published 881 days, 21 hours, 59 minutes ago posted by gpeipmangpeipman 884 days, 13 hours, 10 minutes ago
Saturday, December 25, 2010 3:18:02 PM GMT Thursday, December 23, 2010 12:06:41 AM GMT
If you are using AppFabric Access Control Services to authenticate users when they log in to your community site using Live ID, Google or some other popular identity provider, you need more than AuthorizeAttribute to make sure that users can access the content that is there for authenticated users only. In this posting I will show you hot to extend the AuthorizeAttribute so users must also have user profile filled. (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: AppFabric, MVC, ASP.NET, Azure
8
Shouts

ASP.NET MVC3 Razor Script Loading Tips

published 880 days, 1 hour, 10 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 884 days, 15 hours, 12 minutes ago
Monday, December 27, 2010 12:07:02 PM GMT Wednesday, December 22, 2010 10:04:53 PM GMT
Lately, I have been playing with few JavaScript frameworks and in today’s modern web applications it is very common that we are including tons of JavaScript files in our application. One of the thing that plays important role in application performance is how fast these script files are delivered into the browsers. I have extensively blogged on ... (more)
category: Web Dev | clicked: 4 | 2 comments | | source: kazimanzurrashid.com
tags: ASPNETMVC, ASP .NET MVC, MVC, ASP.NET
6
Shouts

Handling System Errors in MVC

published 885 days, 4 hours, 10 minutes ago posted by derikwhittakerderikwhittaker 886 days, 1 hour, 14 minutes ago
Wednesday, December 22, 2010 9:06:10 AM GMT Tuesday, December 21, 2010 12:02:30 PM GMT
Taking a look at how to perform error handling in Asp.Net MVC. We will focus on how you can build your MVC application to be able to handle 404 (file not found) and 500 errors (internal server error) (more)
category: Screencast | clicked: 3 | comment | | source: dimecasts.net
tags: DimeCasts.net, Error, MVC
3
Shouts

ASP.NET: Including JavaScript libraries conditionally from CDN

published 885 days, 4 hours, 10 minutes ago posted by gpeipmangpeipman 887 days, 4 hours, 32 minutes ago
Wednesday, December 22, 2010 9:06:10 AM GMT Monday, December 20, 2010 8:44:10 AM GMT
When developing cloud applications it is still useful to build them so they can run also on local machine without network connection. One thing you use from CDN when in cloud and from app folder when not connected are common JavaScript libraries. In this posting I will show you how to add support for local and CDN script stores to your ASP.NET MVC web application. (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: CDN, MVC, ASP.NET, Azure
4
Shouts

ASP.NET MVC 3: Using AppFabric Access Control Service to authenticate users

published 886 days, 18 hours, 56 minutes ago posted by gpeipmangpeipman 888 days, 16 hours, 21 minutes ago
Monday, December 20, 2010 6:20:11 PM GMT Saturday, December 18, 2010 8:55:12 PM GMT
I had Windows Azure training this week and I tried out how easy or hard it is to get Access Control Service to work with my ASP.NET MVC 3 application. It is easy now but it was not very easy to get there. In this posting I will describe you what I did to get ASP.NET MVC 3 web application to work with Access Control Service (ACS). I will show you also some code you may find useful. (more)
category: Web Dev | clicked: 7 | comment | | source: weblogs.asp.net
tags: ACS, AppFabric, MVC, ASP.NET, Azure
2
Shouts

Migrating a standard ASP.NET Website to N2CMS on EC2

published 889 days, 14 hours, 18 minutes ago posted by traskjdtraskjd 891 days, 9 hours, 36 minutes ago
Friday, December 17, 2010 10:58:35 PM GMT Thursday, December 16, 2010 3:40:26 AM GMT
This post reviews a recent site migration that Mindscape undertook - moving from a standard ASP.NET solution to the great N2CMS open source CMS using ASP.NET MVC. It looks at the challenges and solutions that were found as part of the migration to make it smooth and improve site performance for website visitors. (more)
category: Web Dev | clicked: 5 | comment | | source: www.mindscapehq.com
tags: EC2, N2CMS, MVC, Mindscape, ASP.NET
3
Shouts

Announcing ASP.NET MVC 3 (Release Candidate 2) - ScottGu's Blog

published 893 days, 11 hours, 18 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 895 days, 19 hours, 15 minutes ago
Tuesday, December 14, 2010 1:58:42 AM GMT Saturday, December 11, 2010 6:01:42 PM GMT
Earlier today the ASP.NET team shipped the final release candidate (RC2) for ASP.NET MVC 3.  You can download and install it here.Almost there… Today’s RC2 release is the near-final release of ASP.NET MVC 3, and is a true “release candidate” in that we are hoping to not make any more code changes with it.  We are publishing it today so that people can do final testing with it, let us know if they find any last minute “showstoppers”, and start updating their apps to use it.  We will officially ship the f... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, MVC, ASP.NET
6
Shouts

DLL-s needed to run ASP.NET MVC 3 RC on Windows Azure

published 899 days, 20 hours, 12 minutes ago posted by gpeipmangpeipman 900 days, 15 hours, 50 minutes ago
Tuesday, December 07, 2010 5:04:41 PM GMT Monday, December 06, 2010 9:26:07 PM GMT
In this weekend I made one of my new apps run on Windows Azure. I am building this application using ASP.NET MVC 3 RC and Razor view engine. In this posting I will list DLL-s you need to have as local copies to get ASP.NET MVC 3 RC run on Windows Azure web role. (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: Razor, MVC, ASP.NET, Azure
9
Shouts

ASP.NET MVC Theme Supported Razor View Engine

published 900 days, 19 hours, 31 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 903 days, 16 hours, 37 minutes ago
Monday, December 06, 2010 5:45:28 PM GMT Friday, December 03, 2010 8:39:14 PM GMT
Recently, I was trying to add theme support in one of my pet project. There are already few articles available in ASP.NET MVC ViewEngine theming  which you will find by Google/Bing, but those are not best fitted in my case. One of the goal in theming I wanted to implement is to add fallback support, which means if a theme does not have th... (more)
category: Web Dev | clicked: 39 | 2 comments | | source: kazimanzurrashid.com
tags: ASPNETMVC, ASP .NET MVC, Razor, MVC
4
Shouts

MVC Part 2 - Adding MVC to existing project

published 904 days, 23 hours, 34 minutes ago posted by dczupekdczupek 906 days, 20 hours, 10 minutes ago
Thursday, December 02, 2010 1:42:44 PM GMT Tuesday, November 30, 2010 5:06:42 PM GMT
How to add MVC into existing ASP.NET project. Required changes in project file, global.asax, web.config and IIS configuration. (more)
category: Web Dev | clicked: 0 | comment | | source: blog.dczweb.net
tags: MVC
4
Shouts

ASP.NET MVC: Comparing same view on ASP.NET and Razor view engine

published 907 days, 3 hours, 20 minutes ago posted by gpeipmangpeipman 910 days, 13 hours, 15 minutes ago
Tuesday, November 30, 2010 9:57:03 AM GMT Saturday, November 27, 2010 12:01:42 AM GMT
ASP.NET MVC: Comparing same view on ASP.NET and Razor view engine I ported views of my ASP.NET MVC application from ASP.NET to Razor. Although Razor is very new it is very promising view engine because of shorter and cleaner syntax. In this posting I will show you same view on ASP.NET and Razor view engine. I like Razor one more but what do you think? (more)
category: Web Dev | clicked: 2 | comment | | source: weblogs.asp.net
tags: Razor, MVC, ASP.NET
5
Shouts

Integrate Html5 Form in ASP.NET MVC (part 2) - Kazi Manzur Rashid

published 908 days, 6 hours, 31 minutes ago posted by http://kazimanzurrashid.myopenid.com/http://kazimanzurrashid.myopenid.com/ 912 days, 16 hours, 5 minutes ago
Monday, November 29, 2010 6:45:16 AM GMT Wednesday, November 24, 2010 9:11:40 PM GMT
I usually do not write multiple post in the same day, but as I was having some conversation with a folk in ASP.NET mailing list on Html5 specially on client side validation support in ASP.NET MVC3,  I decided to post the second part of the Html5 form Integration which I initially started in my old blog. In the previous post, I have shown you how you can emit standard HTML5 attributes from the ModelMetadata, I know the code is not what you lik... (more)
category: Web Dev | clicked: 0 | comment | | source: kazimanzurrashid.com
tags: ASP .NET MVC, MVC, html5
4
Shouts

MVC Basics

published 913 days, 18 hours, 59 minutes ago posted by dczupekdczupek 914 days, 20 hours, 36 minutes ago
Tuesday, November 23, 2010 6:17:39 PM GMT Monday, November 22, 2010 4:40:09 PM GMT
Basics about MVC under .NET. Start up informations. (more)
category: Web Dev | clicked: 0 | comment | | source: blog.dczweb.net
tags: MVC, Model View Controller
4
Shouts

Making your own ViewEngine with Markdown

published 913 days, 18 hours, 59 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 914 days, 22 hours, 9 minutes ago
Tuesday, November 23, 2010 6:17:39 PM GMT Monday, November 22, 2010 3:07:33 PM GMT
Using MVC 3's IViewEngine to create a custom View Engine using Markdown instead of the standard Razor or Webforms. (more)
category: Architecture | clicked: 4 | 1 comment | | source: buildstarted.com
tags: Markdown, C#, MVC
4
Shouts

MVC 3 Beta – First Impressions - IBloggable - implemented

published 920 days, 11 hours, 28 minutes ago posted by iftekharahmedamitiftekharahmedamit 921 days, 13 hours, 20 minutes ago
Wednesday, November 17, 2010 1:49:00 AM GMT Monday, November 15, 2010 11:56:18 PM GMT
I’m sure most of you have read ScottGu’s announcement about MVC 3 going Beta. I was able to play with the bits and here are my thoughts about this release. One of the first things I noticed was that the Razor view engine (which was initially named as CshtmlViewEngine) has been renamed as RazorViewEngine. This is a good thing now that Razor supports not just the C#, but also VB.net. Plus RazorViewEngine makes lot more sense than CshtmlViewEngine (IMHO, even in the earlier version when only CS was support... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC 3, ASP.NET MVC, ASPNETMVC, MVC, ASP.NET
5
Shouts

MVC 3 Release candidate out (so much for my Razor Syntax Highlighter)

published 926 days, 21 hours, 36 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 927 days, 21 hours, 5 minutes ago
Wednesday, November 10, 2010 3:41:01 PM GMT Tuesday, November 09, 2010 4:11:06 PM GMT
Well, the time has come for me to bow down to those who truly rock. The wonderful team at Microsoft has finally released their official version of the Syntax Highlighter (with Intellisense) for MVC’s Razor. (more)
category: Architecture | clicked: 0 | comment | | source: buildstarted.com
tags: Razor, MVC
Previous 1 2 3 4 5 6 7 8 9 10 ... 13 14 Next