DotNetShoutout - Stories tagged with MVC
2
Shouts

Configuring Bundles in MVC 4

published 442 days, 9 hours, 25 minutes ago posted by tduponttdupont 446 days, 2 hours, 23 minutes ago
Wednesday, April 04, 2012 10:04:00 AM GMT Saturday, March 31, 2012 5:05:53 PM GMT
The bundling, compression, and minification of JavaScript is important to the speed and performance of modern websites. This is why I was so excited to hear that such features were (finally) coming built in to ASP.NET MVC 4. Introducing MvcBundleConfig: a project that adds configuration and debugging features to MVC 4's bundling framework, and meets the needs and wants of a good minification framework. (more)
category: Web Dev | clicked: 45 | comment | | source: www.tomdupont.net
tags: Bundle, Combres, Compression, JavaScript, MvcBundleConfig, CSS, minification, MVC, MVC4
2
Shouts

ASP.NET MVC 3, Razor-C#, and VB.NET WebForms - A Tale of Black Magic Voodoo

published 488 days, 22 hours, 55 minutes ago posted by Matt_TCFMatt_TCF 490 days, 14 hours, 41 minutes ago
Friday, February 17, 2012 8:33:18 PM GMT Thursday, February 16, 2012 4:47:23 AM GMT
What do you get when you mix a legacy VB.NET WebForms application, ASP.NET MVC, and Razor views that are written in C#? If you said “Pain!” you are quite right. But what you also get is the ability to leverage your existing investment in VB.NET WebForms while crafting new code in ASP.NET MVC Razory-C# goodness. In this series of posts, I’m going to tell you how you, too, can concoct a wicked brew that will enable you to do crazy things, such as creating Razor views in C# that utilize VB.NET WebForms m... (more)
category: Web Dev | clicked: 54 | comment | | source: trycatchfail.com
tags: VB.NET, Razor, MVC, ASP.NET
5
Shouts

Add HTML5 Geolocation plus Bing Maps into ASP.NET MVC views - Rachel Appel

published 504 days, 2 hours, 22 minutes ago posted by KluggerKlugger 505 days, 2 hours, 41 minutes ago
Thursday, February 02, 2012 5:06:51 PM GMT Wednesday, February 01, 2012 4:47:48 PM GMT
The Bing Maps API is a free, easy to use API, that allows you to incorporate mapping features into your ASP.NET MVC or application by using Web standards such as JavaScript, and the now supported HTML5 Geolocation. Bing Maps and ASP.NET MVC A Bing maps API key is required when using the API. The Bing Maps key allows you to access Geolocation data, and to manipulate an in-view ... (more)
category: Web Dev | clicked: 81 | 1 comment | | source: rachelappel.com
tags: ASP.NET MVC, ASPNETMVC, Bing Maps, GeoLocation, MVC, ASP.NET, html5
6
Shouts

Syncfusion is Offering Free ASP.NET MVC User Interface Controls for Microsoft WebsiteSpark Subscribers - Iftekhar Ahmed Amit's Blog

published 504 days, 2 hours, 22 minutes ago posted by iftekharahmedamitiftekharahmedamit 507 days, 2 hours, 23 minutes ago
Thursday, February 02, 2012 5:06:51 PM GMT Monday, January 30, 2012 5:06:01 PM GMT
Give your web applications a 360˚ transformation with Syncfusion’s ASP.NET MVC user interface controls!   Microsoft WebsiteSpark Subscribers are eligible for a Free license (calculated at over $1,000) and a 90-day subscription.     Syncfusion’s ASP.NET MVC user interface controls User ... (more)
category: Web Dev | clicked: 69 | 1 comment | | source: blog.iftekharahmedamit.com
tags: ASP.NET MVC, ASPNETMVC, SyncFusion, WebsiteSpark, MVC, ASP.NET
4
Shouts

Dean Hume - MVC Asynchronous Controller : The Basics

published 516 days, 2 hours, 42 minutes ago posted by deanomachinodeanomachino 520 days, 9 hours, 11 minutes ago
Saturday, January 21, 2012 4:46:53 PM GMT Tuesday, January 17, 2012 10:17:46 AM GMT
Coding Tips & TricksHomeAboutContactCV MVC Asynchronous Controller : The Basics Tweet When I first saw the Asynchronous Controllers introduced in MVC 2, I couldn't wait to start playing around. I thought that it would be a really easy to get up and running with a simple example, but after searching online for a few working examples - pretty much all of them used an event based pattern that wasn't easy to understand. In this blog post I am going to run through a really simple example that... (more)
category: Web Dev | clicked: 32 | comment | | source: deanhume.com
tags: MVC, Async Controller, Asynchronous
2
Shouts

Bundling and Minification in ASP.NET MVC 4 | dotnetExpertGuide.com

published 542 days, 11 hours, 13 minutes ago posted by nandipnandip 545 days, 9 hours, 23 minutes ago
Monday, December 26, 2011 8:15:27 AM GMT Friday, December 23, 2011 10:05:39 AM GMT
This post is part of ASP .NET MVC 4 Article Series. In yesterday’s post, we have discussed that in today’s web application, client side operation is also important as much as server operation. And hence client side operation increase, JavaScript code is also increased and for maintainability of code we generally separate it by functionality in different files. Hence separated code is JavaScript so web page needs to reference many JavaScript files. Now the trouble may starts, as all browsers limits the p... (more)
category: Web Dev | clicked: 23 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, MVC
5
Shouts

Dean Hume - MVC and HTML5 Web Workers

published 560 days, 15 hours, 2 minutes ago posted by deanomachinodeanomachino 562 days, 10 hours, 57 minutes ago
Thursday, December 08, 2011 4:26:26 AM GMT Tuesday, December 06, 2011 8:32:08 AM GMT
Coding Tips & TricksHomeAboutContactCV MVC and HTML5 Web Workers Tweet 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... (more)
category: Web Dev | clicked: 29 | comment | | source: deanhume.com
tags: C#, Web workers, HTML 5, MVC
2
Shouts

Reloading a Razor WebGrid after Ajax calls using a partial view - .NET Development - Gal Ratner

posted by galratnergalratner 566 days, 18 hours, 58 minutes ago
Friday, December 02, 2011 12:30:52 AM GMT
If 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 o... (more)
category: Web Dev | clicked: 79 | comment | | source: galratner.com
tags: Razor, MVC
2
Shouts

Configuring MVC Routes in Web.config

posted by tduponttdupont 594 days, 12 hours, 25 minutes ago
Friday, November 04, 2011 7:03:29 AM GMT
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. (more)
category: Web Dev | clicked: 11 | comment | | source: www.tomdupont.net
tags: Routing, Configuration, MVC
2
Shouts

Viewmodel assemblers in ASP.NET MVC

posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 617 days, 1 hour, 9 minutes ago
Wednesday, October 12, 2011 6:19:41 PM GMT
Working on a new ASP.NET MVC side-project, I have the luxury to experiment with new technologies, but also with different patterns and naming conventions. Something which bugged me in a previous project was that we made our service layer return viewmodels. It worked rather well because the service layer in our MVC project was just another layer between the real domain services - where most of its work was creating viewmodels from domain objects or translating viewmodels into domain objects, so they c... (more)
category: Web Dev | clicked: 13 | comment | | source: jclaes.blogspot.com
tags: ASP.NET MVC, ViewModel, domain services, MVC
3
Shouts

ASP.NET MVC 3 Controller for Serving Images

published 630 days, 1 hour, 45 minutes ago posted by sonukapoorsonukapoor 631 days, 3 hours, 37 minutes ago
Thursday, September 29, 2011 5:43:39 PM GMT Wednesday, September 28, 2011 3:51:11 PM GMT
Gain more control over images within an ASP.NET MVC 3 project by creating a controller to handle delivering image file data to the response stream. (more)
category: Web Dev | clicked: 58 | 2 comments | | source: dotnetslackers.com
tags: MVC
3
Shouts

Under the Hood of Display Mode in MVC 4 | dotnet Expert Guide

posted by nandipnandip 632 days, 8 hours ago
Tuesday, September 27, 2011 11:28:29 AM GMT
This post is part of ASP.NET MVC 4 Article Series. I am little late in publishing this post as I was busy with my 1st codeplex project. Very soon I will post about my 1st codeplex project. Till that, enjoy this MVC 4 series and do let me know your valuable feedback. In our last post, we have seen how we can use Display Mode feature of MVC 4 to enable browser specific view. In this post we will examine how in built Display Mode works in MVC 4. We know that we can create view for mobile browser by addin... (more)
category: Web Dev | clicked: 12 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, MVC
3
Shouts

ASP.NET MVC 4 Mobile Project Template | dotnet Expert Guide

posted by nandipnandip 641 days, 6 hours, 2 minutes ago
Sunday, September 18, 2011 1:26:53 PM GMT
This post is part of ASP.NET MVC 4 Article Series. With ASP.NET MVC 4, it’s even easier to setup and carry out a project which target mobile and tablet device. Yes MVC team introduce a new project template with MVC 4 which target mobile and tablet platform. This project template is build on the base of jQuery Mobile. And hence it is also optimized for better experience for touch screen.To get started with Mobile Project Template in MVC 4Create a new ASP.NET MVC 4 Web ApplicationSelect Mobile Application... (more)
category: Web Dev | clicked: 17 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, ASP .NET, MVC
4
Shouts

First look at ASP.NET MVC 4 Templates | dotnet Expert Guide

posted by nandipnandip 643 days, 12 hours, 58 minutes ago
Friday, September 16, 2011 6:30:41 AM GMT
This post is part of ASP .NET MVC 4 Article Series. With release of ASP.NET MVC 4 Developer Preview, ASP.NET MVC team introduces a new default project template for MVC 4. New template has following improvements. Cosmetic Improvements New MVC 4 project template has cosmetic improvements prior to MVC 3 project template. And it will help community to create good looking modern websites with the default template itself without investing more in template designing. Adaptive Rendering Along with c... (more)
category: Web Dev | clicked: 10 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, MVC
2
Shouts

Getting Started With ASP.NET MVC 4 | dotnet Expert Guide

posted by nandipnandip 643 days, 12 hours, 59 minutes ago
Friday, September 16, 2011 6:30:10 AM GMT
This post is part of ASP.NET MVC 4 Article Series. In this first post of ASP.NET MVC 4 article series, we will see how and from where we can download and install MVC 4. Following are the different useful links for downloading ASP.NET MVC 4. ASP.NET MVC 4 NuGet Packages One good news is that MVC 4 is also available via NuGet. To install MVC 4 via NuGet, type following in the Package Manager Console. For more detail regarding NuGet package please visit http://www.nuget.org/List/Packages/AspNe... (more)
category: Web Dev | clicked: 11 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, MVC
2
Shouts

ASP.NET MVC 4 Article Series | dotnet Expert Guide

posted by nandipnandip 643 days, 12 hours, 59 minutes ago
Friday, September 16, 2011 6:29:31 AM GMT
Well after a long buzz of vNext (ASP.NET 4.5) and MVC 4. Yesterday Microsoft released a developer preview of ASP.NET 4.5 and MVC 4. For a next couple of day I am going to post about cool new features of MVC 4. And accordingly I will update this page with updated MVC 4 post links. Getting Started With ASP.NET MVC 4 (Sep 15th)First look at ASP.NET MVC 4 Templates (Sep 16th) Hope it would be helpful. Follow @dotnetXPRTGuide Tweet (more)
category: Web Dev | clicked: 6 | comment | | source: www.dotnetexpertguide.com
tags: vNext, MVC 4, MVC
3
Shouts

Dean Hume - MVC Data URI HTML Helper

posted by deanomachinodeanomachino 644 days, 11 hours, 26 minutes ago
Thursday, September 15, 2011 8:02:51 AM GMT
Coding Tips & TricksHomeAboutContactCV MVC Data URI HTML Helper Tweet I have recently been looking into web page performance and one of the things I came across is the Data URI scheme. When you reference an image in your HTML, the client needs to go and retrieve the image. This creates an HTTP request and adds to the time it takes for the page to load. What is the Data URI scheme - well, it is a URI scheme that provides a way to include data in-line in web pages as if they were externa... (more)
category: Web Dev | clicked: 10 | comment | | source: deanhume.com
tags: C#, Data Uri, MVC, ASP.NET
4
Shouts

WP7 for iPhone and Android Developers - MVC and MVVM

published 656 days, 9 hours, 8 minutes ago posted by KMilKMil 657 days, 11 hours, 37 minutes ago
Saturday, September 03, 2011 10:20:57 AM GMT Friday, September 02, 2011 7:51:33 AM GMT
In the next article of the "WP7 for iPhone and Android Devs" series at SilverlightShow, Kevin Koffman takes a look at the Model – View – Controller pattern and a variant of it, the Model-View-ViewModel pattern. (more)
category: Metro | clicked: 13 | 4 comments | | source: www.silverlightshow.net
tags: iOS, Windows Phone 7, Android, MVVM, MVC
4
Shouts

Razor Functions and Helpers

published 658 days, 9 hours, 3 minutes ago posted by sonukapoorsonukapoor 660 days, 22 hours, 38 minutes ago
Thursday, September 01, 2011 10:25:36 AM GMT Monday, August 29, 2011 8:50:38 PM GMT
Brian Mains examines functions and helpers in ASP.NET MVC 2 with the Razor engine. (more)
category: Web Dev | clicked: 36 | 3 comments | | source: dotnetslackers.com
tags: Razor, MVC, ASP.NET
2
Shouts

An Introduction to Razor Syntax

published 680 days, 5 hours, 11 minutes ago posted by sonukapoorsonukapoor 682 days, 5 hours, 9 minutes ago
Wednesday, August 10, 2011 2:17:19 PM GMT Monday, August 08, 2011 2:20:02 PM GMT
This article is going to help ASP.NET MVC developers translate their ASP.NET MVC view engine skills to Razor. (more)
category: Web Dev | clicked: 34 | comment | | source: dotnetslackers.com
tags: Razor, MVC, ASP.NET
Previous 1 2 3 4 5 6 7 8 9 10 ... 13 14 Next