Browse by Tags
All Tags »
MVC (
RSS)
It looks like people are starting to deploy sites based on the ASP.NET MVC Framework already. I've been trying to collect some examples and here's what I got so far. FlingMix.com - FlingMix.com is a craigslist-like dating / adult personals site built...
ASP.NET MVC CTP 2 shipped with a new controller class which you may have missed. Community feedback begged for a better way to handle component pages that don't rely on the main page's view data. A classic example might be a stock ticker. We would want...
Problem: You need a CAPTCHA to use when submitting forms in MVC Solution: For this I will defer to an excellent explanation: http://www.coderjournal.com/2008/03/aspnet-mvc-captcha/
Scenario: You want to write some tests for your route configuration, but you hate typing... Solution: We can create some VS Code Snippets to generate most of the tests for you. While messing around with Kigg , I got the idea to create some snippets to...
This is one of the neatest, straightforward, and down right coolest way to submit a form with the ASP.NET MVC Framework. I've blogged in the past about jQuery and how useful it is. Combining MVC with jQuery can produce some really neat Web 2.0 style applications...
Scenario: You have a view which renders a list of customers. You need to provide a way to delete customers from this table view of the data. In your "CustomersController" you have a Delete action which takes a Customer ID. How do we go about providing...
This is probably a good time to note... all of this is based on a CTP version of the MVC framework. I'm putting this together mostly as a reference for myself. If you start developing with any of these tips, new versions of the MVC framework will have...
Scenario : Here's a quick little "how-to" for a pretty common task. After some controller event, you want to redirect the user to a new action, perhaps on a different controller, while passing some data along to it. Fair enough (and very simple)... Solution...
Scenario: I've been creating several shared components that I use throughout the MVC application. I found that almost all my forms needed some kind of feedback mechanism on whether the form was successful or not. I created an ErrorDisplay ViewUserControl...
This weekend, Saturday, February 2nd is the South Florida Code Camp . I'm really looking forward to some of the sessions. I couldn't believe that the ASP.NET MVC Framework got it's own track on the agenda ! This is great news and shows how much excitement...
More Posts