DotNetShoutout - Stories tagged with MVC
8
Shouts

ASP.NET MVC 3: Caching charts

published 954 days, 7 hours, 37 minutes ago posted by gpeipmangpeipman 956 days, 11 hours, 43 minutes ago
Tuesday, October 12, 2010 2:27:34 PM GMT Sunday, October 10, 2010 10:21:14 AM GMT
In my previous posting about charts in ASP.NET MVC 3 I gave you basic idea about how to use them. In this posting I will show you something cool – we will optimize performance of our application by caching charts so we don’t have to generate them on every request. (more)
category: Web Dev | clicked: 2 | comment | | source: weblogs.asp.net
tags: chart, MVC, ASP.NET
6
Shouts

ASP.NET MVC 3 Beta: Built-in support for charts

published 955 days, 7 hours, 6 minutes ago posted by gpeipmangpeipman 956 days, 12 hours, 55 minutes ago
Monday, October 11, 2010 2:57:59 PM GMT Sunday, October 10, 2010 9:08:47 AM GMT
ASP.NET MVC does not have built-in support for chart control and that’s why I worked out my own solution to make ASP.NET MVC support chart control. With ASP.NET MVC 3 we will get official support for charts right out of the box. In this posting I will show you how to use charts in ASP.NET MVC 3 Beta. (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: chart, MVC, ASP.NET
10
Shouts

Announcing NuPack, ASP.NET MVC 3 Beta, and WebMatrix Beta 2 - ScottGu's Blog

published 958 days, 4 hours, 1 minute ago posted by rajuraju 959 days, 13 hours, 25 minutes ago
Friday, October 08, 2010 6:03:29 PM GMT Thursday, October 07, 2010 8:39:19 AM GMT
I’m excited to announce the beta release of several projects today. Two of these releases - ASP.NET MVC 3 Beta and WebMatrix Beta 2 - are evolutions of projects we first previewed this summer.  The third – NuPack - is a new project that I’m particularly excited about.NuPack – Open Source Package Manager for .NET NuPack is a free open source package manager that makes it easy for you to find, install, and use .NET libraries in your projects. It works with all .NET project types (including, but not limit... (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: .NET, Visual Studio, Community News, MVC, ASP.NET
4
Shouts

NuPack, ASP.NET MVC 3 Beta and WebMatrix Beta 2 are here!

published 958 days, 4 hours, 1 minute ago posted by gpeipmangpeipman 960 days, 31 minutes ago
Friday, October 08, 2010 6:03:29 PM GMT Wednesday, October 06, 2010 9:33:22 PM GMT
Some great news from Microsoft dudes – NuPack, ASP.NET MVC 3 Beta and WebMatrix Beta 2 are here! Seems like busy weekend is coming. Here you can find download links to new versions of products. (more)
category: Web Dev | clicked: 0 | comment | | source: weblogs.asp.net
tags: nupack, WebMatrix, MVC, ASP.NET
6
Shouts

MSDN Magazine: Cutting Edge - Action Filters in ASP.NET MVC

published 961 days, 10 hours, 39 minutes ago posted by https://me.yahoo.com/mosessaur#7fe0dhttps://me.yahoo.com/mosessaur#7fe0d 963 days, 11 hours, 8 minutes ago
Tuesday, October 05, 2010 11:25:29 AM GMT Sunday, October 03, 2010 10:56:25 AM GMT
Here’s an in-depth exploration of a powerful feature of ASP.NET MVC controllers that can greatly help you in the building of aspect-oriented Web solutions. (more)
category: Web Dev | clicked: 0 | comment | | source: msdn.microsoft.com
tags: ASPNETMVC, MSDN, MSDN Magazine, MVC
7
Shouts

HtmlHelper guide for MVC 3 Part 2

published 966 days, 17 hours, 9 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 967 days, 8 hours, 11 minutes ago
Thursday, September 30, 2010 4:54:55 AM GMT Wednesday, September 29, 2010 1:52:49 PM GMT
When you spend a lot of time, like I do, using the Razor View Engine in MVC 3 you’ll find yourself constantly looking up helper parameters. I’ve decided to put together this guide to help me, and others, to code more quickly and efficiently. This is part one of an n-part series involving all html helpers contained in MVC 3. This is Part 2 of my Helper Guide. (more)
category: Architecture | clicked: 0 | comment | | source: buildstarted.com
tags: C#, MVC
9
Shouts

Custom Ordering of Action Filters in ASP.NET MVC

published 967 days, 9 hours, 45 minutes ago posted by gshacklesgshackles 968 days, 10 hours, 26 minutes ago
Wednesday, September 29, 2010 12:18:45 PM GMT Tuesday, September 28, 2010 11:37:42 AM GMT
A look at how ASP.NET MVC lets you order the execution of action filters, and what extension points there are for customizing it. (more)
category: Web Dev | clicked: 0 | comment | | source: www.gregshackles.com
tags: Action Filter, MVC, ASP.NET
3
Shouts

ASP.NET MVC: Using asynchronous controller to call web services

published 971 days, 13 hours, 38 minutes ago posted by gpeipmangpeipman 971 days, 21 hours, 6 minutes ago
Saturday, September 25, 2010 8:25:44 AM GMT Saturday, September 25, 2010 12:57:58 AM GMT
Lately I wrote about how to make a lot of asynchronous calls to web services during ASP.NET page processing. Now it’s time to make same thing work with ASP.NET MVC. This blog post shows you how to use asynchronous controllers and actions in ASP.NET MVC and also you will see more complex scenario where we need to gather results of different web service calls to one result set. (more)
category: Web Dev | clicked: 7 | comment | | source: weblogs.asp.net
tags: Web Services, asynchronous processing, Threading, MVC, ASP.NET
6
Shouts

Dean Hume - MVC and the Google Visualization API (DataTable)

published 970 days, 13 hours, 48 minutes ago posted by deanomachinodeanomachino 972 days, 8 hours, 21 minutes ago
Sunday, September 26, 2010 8:16:25 AM GMT Friday, September 24, 2010 1:42:45 PM GMT
MVC and the Google Visualization API (DataTable) Google have created an awesome visualization API. It enables you to add live charts, graphs and tables to your web pages. It is quite flexible and has some great features that are quite easy to use once you get started. I started playing around with this API and decided to build a datatable using ASP.net MVC and the visualization API. Click here to view a simple demo. Let's start off by adding a reference to the latest jQuery library. Then we wil... (more)
category: Web Dev | clicked: 9 | comment | | source: deanhume.com
tags: ASP.NET MVC, C#, Google API, Visualization, MVC
14
Shouts

Anonymous View Models in ASP.NET MVC Using Dynamics

published 973 days, 3 hours, 15 minutes ago posted by gshacklesgshackles 976 days, 8 hours, 53 minutes ago
Thursday, September 23, 2010 6:48:59 PM GMT Monday, September 20, 2010 1:11:23 PM GMT
A look at some of the limitations of anonymous classes in .NET, and the solutions available for using them as view models in ASP.NET MVC. (more)
category: Web Dev | clicked: 2 | comment | | source: www.gregshackles.com
tags: Dynamics, .Net 4.0, MVC, ASP.NET
5
Shouts

Creating your own ModelMetadataProvider to handle custom attributes

published 979 days, 7 hours, 33 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 982 days, 5 hours, 56 minutes ago
Friday, September 17, 2010 2:30:59 PM GMT Tuesday, September 14, 2010 4:08:28 PM GMT
In this post we're going to create our own metadataprovider for mvc to handle our custom attributes or other situations. (more)
category: Architecture | clicked: 3 | comment | | source: buildstarted.com
tags: C#, MVC
7
Shouts

Custom Model Binders in MVC 3 with IModelBinder

published 981 days, 7 hours, 4 minutes ago posted by http://morder.myopenid.com/http://morder.myopenid.com/ 984 days, 2 hours, 53 minutes ago
Wednesday, September 15, 2010 2:59:37 PM GMT Sunday, September 12, 2010 7:10:44 PM GMT
Implementing a custom Model Binder with MVC 3 to load a complex object from a simple id (more)
category: Architecture | clicked: 25 | comment | | source: buildstarted.com
tags: C#, MVC
13
Shouts

Complexity in ASP.NET MVC, Part 1: Dealing With Large Models

published 976 days, 9 hours, 33 minutes ago posted by sonukapoorsonukapoor 986 days, 6 hours, 47 minutes ago
Monday, September 20, 2010 12:31:05 PM GMT Friday, September 10, 2010 3:17:14 PM GMT
At times, every developer has a web forms page or MVC view that ends up getting pretty complex, for various reasons. Whether it pulls in and integrates a lot of data (such as a portal page) or allows users to edit a lot of information, applications require data, and the amount of data grows over time. It’s a simple reality. We’re going to examine what a larger ASP.NET MVC view looks like, and some actions we can take to keep the model instantiation code as slim as possible. (more)
category: Web Dev | clicked: 0 | comment | | source: dotnetslackers.com
tags: MVC, ASP.NET
6
Shouts

GeeksShip Community - Topic: A simple mvc example to view and edit .NET resource (*.resx) files

published 988 days, 10 hours, 30 minutes ago posted by http://tumivn.myopenid.com/http://tumivn.myopenid.com/ 989 days, 22 hours, 22 minutes ago
Wednesday, September 08, 2010 11:34:27 AM GMT Monday, September 06, 2010 11:42:28 PM GMT
We create the multi-languages GeeksShip.com community for developer. We want to add a function to our website, which allows members to edit the asp.net resource files to translate our GeeksShip.com UI’s text into their mother languages. (more)
category: Web Dev | clicked: 3 | comment | | source: geeksship.com
tags: ResourceFile, Resources Management, MVC
5
Shouts

August 29th Links: .NET, ASP.NET, IIS Express, Silverlight, Windows Phone 7 - ScottGu's Blog

published 989 days, 20 hours, 40 minutes ago posted by rajuraju 992 days, 4 hours, 26 minutes ago
Tuesday, September 07, 2010 1:24:33 AM GMT Saturday, September 04, 2010 5:38:18 PM GMT
Here is the latest in my link-listing series.  Also check out my VS 2010 and .NET 4 series and ASP.NET MVC 2 series for other on-going blog series I’m working on. [In addition to blogging, I am also now using Twitter for quick updates and to share links. Follow me at: twitter.com/scottgu].NET/WPF/EF 5 Little C#/.NET Wonders that Make Code Better: Nice blog post from James that highlights 5 nice language/framework tips you can take advantage of within your apps.  I’m betting a lot of people didn’t know ... (more)
category: Web Dev | clicked: 0 | 1 comment | | source: weblogs.asp.net
tags: Link Listing, .NET, IIS7, WPF, Community News, MVC, ASP.NET
4
Shouts

Code Capers | Simple Dependency Injection using a Custom MVC Controller Factory

published 993 days, 33 minutes ago posted by mceranskimceranski 993 days, 18 hours, 27 minutes ago
Friday, September 03, 2010 9:31:22 PM GMT Friday, September 03, 2010 3:37:25 AM GMT
Dependency injection is an important concept to grasp if you plan on doing unit testing. In this article, I demonstrate how a proper constructor signature coupled with a a custom controller factory can make it easy to swap out repository objects for testing purposes. (more)
category: Web Dev | clicked: 1 | comment | | source: www.codecapers.com
tags: TDD, Dependecy Injection, DI, unit testing, MVC
4
Shouts

Extending the SiteMap - Rudi Grobler in the Cloud

posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 1000 days, 14 hours, 21 minutes ago
Friday, August 27, 2010 7:42:55 AM GMT
How to extend orchard by adding a Sitemap (more)
category: Web Dev | clicked: 0 | comment | | source: www.rudigrobler.net
tags: Orchard, MVC, sitemap
7
Shouts

XamlAsyncController - Rendering a Xaml Gauge Control (and other WPF Controls) in ASP.NET MVC

published 1001 days, 10 hours, 24 minutes ago posted by http://amazedsaint-articles.blogspot.com/http://amazedsaint-articles.blogspot.com/ 1002 days, 13 hours, 21 minutes ago
Thursday, August 26, 2010 11:39:36 AM GMT Wednesday, August 25, 2010 8:43:06 AM GMT
This article explains how to render Xaml and WPF controls in ASP.NET MVC using XamlAsyncController. There are two steps you need to do to render Xaml or a WPF control as an image from your ASP.NET MVC ControllerInherit your Controller from XamlAsyncController, and add an Async action for serving the image  Add your Xaml file to the path /Visualizations/{Controller}/{Action}.xaml Also, now there is one more way of rendering a WPF control from your MVC control... (more)
category: Web Dev | clicked: 4 | comment | | source: amazedsaint.blogspot.com
tags: guage, WPF, XAML, MVC, ASP.NET
6
Shouts

Dean Hume - MVC Experiment : An Alternative to Captcha

published 1002 days, 9 hours, 16 minutes ago posted by deanomachinodeanomachino 1004 days, 8 hours, 42 minutes ago
Wednesday, August 25, 2010 12:47:59 PM GMT Monday, August 23, 2010 1:22:08 PM GMT
MVC Experiment : An Alternative to Captcha I'm sure most of you have at some point been exposed to a CAPTCHA control on the net. They come in loads of forms and are used to tell the difference between humans and computers (bots). If you have a website on the net, you are prone to lots of different kinds of attacks from bots - such as CSRF (Cross-Site Request Forgery) You may have noticed that on some sites you get asked simple math questions or other simple questions when submitting or posting info... (more)
category: Web Dev | clicked: 3 | comment | | source: deanhume.com
tags: Slider, ASP.NET 3.5, C#, jQuery, MVC
4
Shouts

Creating a sitemap module for Orchard - Rudi Grobler in the Cloud

published 1002 days, 9 hours, 16 minutes ago posted by http://rudigrobler.myopenid.com/http://rudigrobler.myopenid.com/ 1004 days, 14 hours, 8 minutes ago
Wednesday, August 25, 2010 12:47:59 PM GMT Monday, August 23, 2010 7:55:57 AM GMT
Article on how to create a sitemap module for Orchard (more)
category: Web Dev | clicked: 5 | comment | | source: www.rudigrobler.net
tags: Orchard, MVC, sitemap
Previous 1 2 3 4 5 6 7 8 9 10 11 ... 13 14 Next