| |
browse.develop.com
Browse.develop.com is a community that was established to collect and
organize valuable web information. Our technical staff have selected and
indexed information and courses that they feel will help you stay
current on best practices across the SDLC.
|
18 Articles match "Demo","MVC"
| Related DevelopMentor Courses | MORE | | Creating an #AngularJS Controller Model View Controller AngularJS is an MVC framework. The Controller part of an MVC application is normally the glue that ties a specific part of that application together. 1: 2: 3: 4: AngularJS Demo. One of the reasons for using an MVC framework is the capability to test the code. HTML5 AngularJS MVC 'In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. " ; 5: $scope. The Problem Solver - Wednesday, April 10, 2013 Using SignalR for real time data updates If you want to try this I have a live demo on my site where you can test this SignalR style page. REST HTML5 ASP.NET MVC SignalRIn a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. Updates would be done in a similar fashion with some JavaScript. Enjoy! The Problem Solver - Wednesday, July 25, 2012 Getting started with RavenDB in an ASP.NET MVC application Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. am starting with a standard ASP.NET MVC 3 application here. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. Data Access HTML5 ASP.NET MVC RavenDBRavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. The Problem Solver - Sunday, November 25, 2012 |
36 Articles match "Demo","MVC"
| The Latest from DevelopMentor | MORE | | Filtering the data in an #AngularJS ngRepeat element 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element Showing a list of items like in the previous post is nice but if the list is large most users appreciate the possibility to search in it. 1: 2: 3: 4: AngularJS Demo. Turns out that AngularJS has that already build in so it is really simple to do. We are using exactly the same controller as before, all it contains is a list of people. 1: function DemoCtrl($scope) {. 14: ]; 15: }. Maurice de Bejeir - Monday, May 13, 2013 Filtering the data in an #AngularJS ngRepeat element 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element Showing a list of items like in the previous post is nice but if the list is large most users appreciate the possibility to search in it. 1: 2: 3: 4: AngularJS Demo. Turns out that AngularJS has that already build in so it is really simple to do. We are using exactly the same controller as before, all it contains is a list of people. 1: function DemoCtrl($scope) {. 14: ]; 15: }. The Problem Solver - Monday, May 13, 2013 Using repeating elements in AngularJS 'Index: Getting started with AngularJS Creating an AngularJS Controller The AngularJS $scope is not the MVC Model Using repeating elements in AngularJS Filtering the data in an AngularJS ngRepeat element In the previous posts I showed how to get started with AngularJS and use some of the basic AngularJS directives to data bind. The markup to generate the list in the screenshot is also real simple: 1: 2: 3: 4: AngularJS Demo. 1: 2: 3: 4: AngularJS Demo. In these examples I uses a really simple single element to bind to. Fortunately this is really easy to do. 14: ]; 15: }. Maurice de Bejeir - Friday, May 10, 2013 | -
| The Best from DevelopMentor | MORE | - Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series)
This article covers the various ways in which you might handle text encoding in ASP.NET MVC. There are at least three ways which MVC manages and encodes (or does not encode) text data. Generating HTML in code for use in MVC Razor views. MVC protects you in several ways against any sort of HTML / JS injection issues. But what if you trust the input and need MVC out of the way so you can write true HTML content to the browser? Check out the CMS section of the demo to see it in action. Check out the Helpers section of the demo to see this in action. Michael C. Kennedy's Weblog - Monday, October 15, 2012 - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
Imagine you’re building an ASP.NET MVC website which has some performance problems. This article will cover a technique using ASP.NET MVC partial views, along with just a sprinkle of jQuery, JavaScript, and HTML5 to make your site feel nice and responsive even if you cannot increase the speed of certain operations. Yet, we are computing them all at once in the MVC action. But with MVC we can employ a few techniques and really make this simple and foolproof. MVC will easily serve the PopularControl’s content up over AJAX and same for any other partial view. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Creating an #AngularJS Controller
Model View Controller AngularJS is an MVC framework. The Controller part of an MVC application is normally the glue that ties a specific part of that application together. 1: 2: 3: 4: AngularJS Demo. One of the reasons for using an MVC framework is the capability to test the code. HTML5 AngularJS MVC 'In the previous blog post I showed how to get started with a really minimal AngularJS application. Even though the app could multiply two numbers it could hardly be called useful and as it turns out that is about as much as I could do with it. " ; 5: $scope. The Problem Solver - Wednesday, April 10, 2013 - Using SignalR for real time data updates
If you want to try this I have a live demo on my site where you can test this SignalR style page. REST HTML5 ASP.NET MVC SignalRIn a previous post I showed how easy it is to create a simple chat application using SignalR. And chatting on the internet might be popular but as it turns out there are rather a lot of applications that need to do more than just chat. As it is there are a lot more CRUD style applications, where users edit data usually stored in a database for some purpose, than chat applications. Updates would be done in a similar fashion with some JavaScript. Enjoy! The Problem Solver - Wednesday, July 25, 2012 - Downloads from Building Rich Input Forms in ASP.NET MVC Webcast
Here is the recorded video, slides, and demo application. Slides: Kennedy-Rich-Forms-with-ASP.NET-MVC-Slides.zip Demo Application: Kennedy-MVC-Forms-Demo.zip Video Recording: Remember, you’ll need to run MongoDB to make the web app work. Read the readme in the zip … Continue reading → DevelopMentor Speaking.NET ASP.NET LINQ MVC NoSQL Screencasts Visual StudioThanks to all who attended my webcast yesterday. Michael C. Kennedy's Weblog - Wednesday, April 11, 2012 - Slides and demos from DevWeek 2013
18 Ways Your Brand-New MVC Web Application Can Be Better. Building Rich Forms in ASP.NET MVC. Watch this space for the demo code as well. I had a great time discussing these topics with everyone at DevWeek 2013. Thanks to all who attended my sessions. Here are the slides: Getting Serious About The Cloud For Developers. Applied NoSQL in.NET. won’t be able to upload them until I get better internet access back in the US (couple of days). Cheers, @mkennedy. Speaking.NET ASP.NET Cloud Conferences DevelopMentor jQuery LearningLine tips web - Getting started with RavenDB in an ASP.NET MVC application
Creating a real simple ASP.NET MVC application using RavenDB A quick demo will show just how easy it is to get started. am starting with a standard ASP.NET MVC 3 application here. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. Data Access HTML5 ASP.NET MVC RavenDBRavenDB is one of the newer document type databases that is conceptually comparable to MongoDB or CouchDB. One of the nice thing about RavenDB, at least for a.NET developer, is that is has been developed with.NET in mind from the start. The Problem Solver - Sunday, November 25, 2012 %>
| | |