Upcoming MVC stories

Introduction to ASP.NET MVC Part 2: Creating a Hello World Site in MVC(www.youtube.com)

submitted by SymetriXSymetriX(25) 2 days, 5 hours ago

In this video I make a simple Hello World site using ASP.NET MVC 4 (but the steps will still work in MVC 3 as well) read more...

add a comment |category: |Views: 3

tags: another

IronJSMVC: Script ASP.NET MVC in JavaScript using IronJS(pietschsoft.com)

submitted by pwhe23pwhe23(972) 2 days, 15 hours ago

Personally, I enjoy writing much of my applications using a statically typed language such as C#. However, I would really prefer to be able to write UI logic and script certain parts of my applications using a dynamic language if I could. I was thinking about this and the following question came to mind: What would it be like to write an ASP.NET MVC application entirely using JavaScript? read more...

add a comment |category: |Views: 5

tags: another

Configuring MVC Bundles with NuGet(www.tomdupont.net)

submitted by tduponttdupont(1259) 3 days, 12 hours ago

MvcBundleConfig is a very simple project that adds configuration and debugging features to MVC 4's bundling framework. Once you create a new MVC4 web application and install the MvcBundleConfig NuGet Package, then you need only update our layout to use the new bundle extension methods, and you are ready to go! read more...

add a comment |category: |Views: 6

tags: another

Beginner video+blog series Part 1: What is ASP.NET MVC?(www.rogerharford.com)

submitted by SymetriXSymetriX(25) 8 days, 5 hours ago

Hey guys, I'm starting a new video+blog series on ASP.NET MVC and would love your feedback read more...

add a comment |category: |Views: 8

tags: another

Change Form Field Validation at Run-Time with Dynamic Data Annotations(www.primaryobjects.com)

submitted by surfer6surfer6(362) 10 days, 3 hours ago

Learn how to load MVC data annotation attributes from an XML file, allowing you to change form field validation at run-time! Provides an easy integration point for CMS content management systems or other tools to edit form field validation and customize forms on-the-fly. read more...

add a comment |category: |Views: 6

tags: another

jQuery UI Helpers v0.5 has been released(jqueryuihelpers.apphb.com)

submitted by attilaxattilax(34) 17 days, 21 hours ago

jQuery UI Helpers is a set of HTML Helpers which help you to integrate jQuery UI into your ASP.NET MVC application. The new version contains helpers for Draggable, Droppable and Selectable - so the library now supports all jQuery UI widgets and interactions. It works with ASP.NET MVC3 and ASP.NET MVC4 Beta. Follow this link to learn how-to create a Tabs widget, load remote content into it using Ajax, or rotate it automatically. read more...

add a comment |category: |Views: 12

tags: another

Using SpecsFor.Mvc - Dealing with Authentication(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(946) 1 month, 1 day ago

This is part four of my series on using SpecsFor.Mvc to write awesome automated acceptance tests for your ASP.NET MVC application. In this post, I’ll show you how to create an authentication handler that will be used by SpecsFor.Mvc to authenticate with your app prior to executing each spec. read more...

add a comment |category: |Views: 4

tags: another

MVC3 - Custom Client-Side Validation with Unobtrusive Ajax - a Complet(www.falconwebtech.com)

submitted by viperguynazviperguynaz(105) 1 month, 3 days ago

For a complete example of MVC3 custom validation attributes for client and server side validation with unobtrusive ajax, we need to add custom jquery validators. In this example, we will create a custom MVC3 attribute to test whether a model property equals a specific value and add the custom jquery validators for client-side validation. read more...

add a comment |category: |Views: 8

tags: another

File Upload in ASP.NET MVC3(www.dotnetjalps.com)

submitted by jalpeshjalpesh(1347) 1 month, 6 days ago

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 control. I am going to use an existing asp.net mvc template for this demo. So I have just modified the default Index view like following. read more...

add a comment |category: |Views: 19

tags: another

jQuery UI Helpers v0.4 has been released(jqueryuihelpers.apphb.com)

submitted by attilaxattilax(34) 1 month, 13 days ago

jQuery UI Helpers is a set of HTML Helpers which help you to integrate jQuery UI into your ASP.NET MVC application. The new version adds support to Resizable and Sortable, and works with ASP.NET MVC3 and ASP.NET MVC4 Beta. Follow this link to learn how-to create a sortable, how-to use it in HTML forms and receive the sorted values on the server. read more...

add a comment |category: |Views: 16

tags: another

MVC3 - Combining Client & Server Side Validation with Unobtrusive Ajax(www.falconwebtech.com)

submitted by viperguynazviperguynaz(105) 1 month, 19 days ago

It took a lot of searching and testing to combine several solutions that work in MVC3 to combine client-side and server-side validation with an unobtrusive AJAX post using Ajax.BeginForm. Here is my solution. read more...

add a comment |category: |Views: 10

tags: another

JavascriptHelper–Managing JS files for ASP.NET MVC(honestillusion.com)

submitted by JamesCurran2JamesCurran2(134) 1 month, 24 days ago

If some part of an ASP.NET MVC page, say a helper or partial page, needs a particular JavaScript file, there's not easy way to manage them. Wouldn't it be great if there was a way to automatically figure out just the files we need for a certain page, and include just those, without us having to do a lot of thinking about it. Isn’t that the type of thing we invented computers for? read more...

add a comment |category: |Views: 9

tags: another

Using SpecsFor.Mvc - Navigation and Form Submission(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(946) 1 month, 26 days ago

This is part two of my series on Using SpecsFor.Mvc to write awesome automated acceptance tests for your ASP.NET MVC application. In this post, we’ll look at navigating around your app from SpecsFor.Mvc and at how to locate, populate, and submit forms. read more...

add a comment |category: |Views: 0

tags: another

Create Dialogs with jQuery UI Helpers(jqueryuihelpers.apphb.com)

submitted by attilaxattilax(34) 2 months ago

jQuery UI Helpers is a set of HTML Helpers which help you to integrate jQuery UI into your ASP.NET MVC application. The new version (v0.3) adds helpers for the Dialog and Progressbar widgets. This tutorial - rich with code examples and working demos - explains how to create and configure dialogs with jQuery UI Helpers, describes the different methods to bind these dialogs to trigger elements on your web page and demonstrates the built-in support for creating confirmation dialogs and Ajax confirmation dialogs. read more...

add a comment |category: |Views: 13

tags: another

Localization in ASP.NET MVC with Griffin.MvcContrib(www.codeproject.com)

submitted by jgauffinjgauffin(150) 2 months ago

ffin.MvcContrib enables localization without having to change your view models. The framework also allows you to translate view strings using: @T("This string will be translated") read more...

add a comment |category: |Views: 7

tags: another

Using SpecsFor.Mvc - Introduction(trycatchfail.com)

submitted by Matt_TCFMatt_TCF(946) 2 months, 2 days ago

SpecsFor.Mvc is a framework for creating automated acceptance tests, powered by borwser automation, for ASP.NET MVC applications. Unlike lower-level tools such as Selenium or Watin, SpecsFor.Mvc is strongly-typed and enables you to write unit-test like specs that will be translated into fullly automated tests through Internet Explorer or Firefox. read more...

add a comment |category: |Views: 2

tags: another