Stories recently tagged with 'MVC'

Use SignalR with Knockout for real-time UX updates in ASP.NET MVC 3(www.iwantmymvc.com)

submitted by schwartyschwarty(125) 5 months, 18 days ago

Learn how to use SignalR and Knockout in an ASP.NET MVC 3 web application to handle real-time UX updates. read more...

1 comment |category: |Views: 71

tags: another

ASP.NET MVC Output Caching with Windows AppFabric Cache(www.devtrends.co.uk)

submitted by devtrendsdevtrends(184) 5 months, 19 days ago

Enterprise level web applications are typically hosted in web farms where in-process caching is less useful than a distributed caching approach such as Windows Server AppFabric or Memcached. Thanks to the extensibility features introduced with ASP.NET 4.0, modifying an application to use a distributed cache is a very simple process. This post explains how to create an AppFabric OutputCacheProvider and how to configure ASP.NET to use the new provider. We will also discuss a big limitation with the MVC3 OutputCacheAttribute and explain how this is addressed by the MvcDonutCaching NuGet package. read more...

1 comment |category: |Views: 27

tags: another

MVC and HTML5 Web Workers(deanhume.com)

submitted by deanomachinodeanomachino(764) 5 months, 20 days ago

HTML5 Web Workers are cool. As a developer that spends most of his time working with server side code, I like to think of Web Workers as .net's System.Threading for the front end. Basically, Web Workers allow you to run client side scripts without interrupting the page or any other scripts that are currently running. They are basically an API specification that lets you create background JavaScript threads to process CPU intensive tasks. The major advantage to using Workers is that it allows long tasks to be executed without blocking to keep the page responsive. It's really good for fire-and-forget tasks and tasks that you can leave to run while the user continues working on the page. Another great thing about Workers is that getting started with them is really easy. read more...

add a comment |category: |Views: 14

tags: another

Creating a Login Form in MVC3 .NET with Attribute Security and CSS3(www.primaryobjects.com)

submitted by surfer6surfer6(362) 5 months, 24 days ago

Step through a tutorial of creating an MVC3 login form for an example application. Learn how to style the form with CSS3 for rounded edges, a gradient background, and a lens flare highlight effect. Our login form will also contain form validation and authenticate against a custom membership provider. read more...

add a comment |category: |Views: 23

tags: another

Reloading a Razor WebGrid after Ajax calls using a partial view(galratner.com)

submitted by galratnergalratner(334) 5 months, 25 days ago

f you are using Razor and MVC you probably make some use of the built in controls in System.Web.Helpers. WebGrid, located in the Helpers assembly, was created for WebMatrix’s Razor Web Pages and landed itself nicely to Razor views in MVC. WebGrid, much like ASP.NET’s ListView control, is designed to display a data driven HTML table on the screen. It has support for paging, sorting and column customization. In this article, we will be taking a quick look at loading a WebGrid with data, both as a part of a page and as a standalone AJAX call. AJAX calls can occur after a page load or sort change and as a part of the interaction of a user with the data on the grid. Let’s begin by making a view. The view will contain the body of the page rendered in the @RenderBody() section of the main layout. In our case the grid will reside in the index page and the index view will simply look like this: read more...

add a comment |category: |Views: 53

tags: another

Ajax with jQuery and JSON in ASP.NET MVC 3 - Part 1(rical.blogspot.com)

submitted by ricalrical(26) 6 months, 1 day ago

I'd like to share a recent post that I wrote about Ajax in ASP.NET MVC 3. Hopefully it might help someone who is struggling to do this. In the post, we'll see how to do Ajax request using HTTP POST method in ASP.NET MVC 3 and how easy it is to implement with the recent framework. read more...

add a comment |category: |Views: 38

tags: another

Mvc 3 model binding(brendan.enrick.com)

submitted by clieyouclieyou(15) 6 months, 3 days ago

Good desc and example for model binding read more...

2 comments |category: |Views: 64

tags: another

Create an autocomplete textbox using jQueryUI(riderdesign.com)

submitted by equinewebdesignequinewebdesign(14) 6 months, 8 days ago

There are a number of jQuery autocomplete plugins available. When creating this blogging application I realized I wanted one autocomplete textbox for Categories and one for Tags when writing a new post. You can see the autocomplete functionality illustrated below. read more...

add a comment |category: |Views: 27

tags: another

Managing Scripts for Razor Partial Views and Templates in ASP.NET MVC(forloop.co.uk)

submitted by russcamrusscam(32) 6 months, 10 days ago

Useful HTML helpers for effectively managing JavaScript files and blocks of code within ASP.NET MVC layouts, views and templates. read more...

2 comments |category: |Views: 35

tags: another

MVCscaffolding database first (weblogs.asp.net)

submitted by threenine39threenine39(329) 6 months, 11 days ago

Found this post really useful and learning how to use this feature. Blog post also contains some great links to other useful posts including some of the usual suspects Steve Sanderson, Phil Haack & Scott Hanselman posts read more...

add a comment |category: |Views: 27

tags: another

Build ASP.NET MVC 3 applications quickly with MvcScaffolding(rachelappel.com)

submitted by threenine39threenine39(329) 6 months, 12 days ago

Easy to follow instructions for MVC scaffolding read more...

1 comment |category: |Views: 360

tags: another

Loading and Rendering a Dynamic Site Menu with ASP.NET MVC 3(www.iwantmymvc.com)

submitted by schwartyschwarty(125) 6 months, 19 days ago

Learn how to work with a dynamic web site menu, from modeling the menu entries to rendering the html markup in ASP.NET MVC 3. read more...

add a comment |category: |Views: 15

tags: another

Configuring MVC Routes in Web.config(www.tomdupont.net)

submitted by tduponttdupont(1259) 6 months, 22 days ago

By simply reading routes out of the Web.config you provide a way to control routing without having to redeploy code, allowing you to enable or disable website functionality on the fly. read more...

add a comment |category: |Views: 8

tags: another

Embedding RavenDB into an ASP.NET MVC 3 Application(msdn.microsoft.com)

submitted by schwartyschwarty(125) 6 months, 23 days ago

Learn how to use the embedded version of RavenDB in an ASP.NET MVC 3 web application. read more...

add a comment |category: |Views: 235

tags: another

A scripting language for your (web)app with DLR or Roslyn(www.progware.org)

submitted by iwannisiwannis(452) 6 months, 25 days ago

How to provide a scripting language to your users of your (web)app by using the Dynamic Language Runtime (DLR) and IronPython, and then the services provided by the Roslyn CTP with C#. read more...

4 comments |category: |Views: 34

tags: another

Using View Model with AutoMapper in MVC (rical.blogspot.com)

submitted by ricalrical(26) 7 months ago

In this post, we will see a simple example of how to map a view model to a model class with AutoMapper. read more...

add a comment |category: |Views: 18

tags: another