| |
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.
|
17 Articles match "Application","Demo"
| Related DevelopMentor Courses | MORE | | 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. This is an object that only needs to be created once and can be cached for the duration of the application live time. One nice and simple way of doing this is by adding the following bit of code to the Global.asax and calling this from the Application_Start() function. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The Problem Solver - Sunday, November 25, 2012 jQuery UI and touch screens I really like using jQuery UI in my web applications. For example take a look at the Draggable demo on an iPad. Try for yourself I have created a small demo page here. But even though jQuery UI is very well tested there are some potential issues to keep in mind. One of those is using the jQuery UI controls on touch devices like the iPad. With these touch enabled devices becoming more and more popular support is quite important if you don’t know you exact client configuration. And on most cases a touch event also raises a mouse event but not quite always. Enjoy The Problem Solver - Monday, September 17, 2012 Using SignalR for real time data updates In 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. So in this blog post I am using a simple CRUD, without the delete part, application to show the power of SignalR. Updates would be done in a similar fashion with some JavaScript. The Problem Solver - Wednesday, July 25, 2012 |
44 Articles match "Application","Demo"
| The Latest from DevelopMentor | MORE | | The #AngularJS $scope is not the MVC Model 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. And this means your application might just behave in an unexpected way as with the “bug” mentioned above. The corrected view is now: 1: 2: 3: 4: AngularJS Demo. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. If you don’t have a “.” 10: 11: 12: +. The Problem Solver - Monday, April 15, 2013 The #AngularJS $scope is not the MVC Model 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model In the previous post I showed how to create and use an MVC Controller in AngularJS to manage the logic of an application. And this means your application might just behave in an unexpected way as with the “bug” mentioned above. The corrected view is now: 1: 2: 3: 4: AngularJS Demo. In this post I showed how to use the $scope variable that is passed into the Controller to share data between the Controller and the View. If you don’t have a “.” 10: 11: 12: +. The Problem Solver - Monday, April 15, 2013 Creating an #AngularJS Controller 'In the previous blog post I showed how to get started with a really minimal AngularJS application. The Controller part of an MVC application is normally the glue that ties a specific part of that application together. The AngularJS Controller The controller that drives the logic of the application is a pretty simple JavaScript constructor function. 1: 2: 3: 4: AngularJS Demo. 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. It also responds to events to do things. The Problem Solver - Wednesday, April 10, 2013 | -
| The Best from DevelopMentor | MORE | - Slides and demos from DevWeek 2013
18 Ways Your Brand-New MVC Web Application Can Be Better. 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. Building Rich Forms in ASP.NET MVC. 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 - How to build a Development/Test/Demo CA
They usually expire on the very day where you have to do an important demo. If this network location cannot be accessed, many applications and frameworks will fail certificate validation (the default WCF binding security settings e.g.). I often need X509 certificates - but I never really became friendly with makecert. So I ended up running Windows Cerificate Services which proved to be an easy to use, robust solution. You can have one at home or carry it around in a VM. Perfect. There are some gotchas you can run into and I refined my configuration over the years. www.leastprivilege.com - Thursday, August 14, 2008 - Demos from BASTA!
ve uploaded the demos. What’s new in Workflow 4.0 – this includes the application with the rehosted designer. Thanks to everyone who attended my two sessions at BASTA! another thoroughly enjoyable conference. Building WCF services with Workflow 4.0. .NET Meanderings - Friday, February 26, 2010 - 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. This is an object that only needs to be created once and can be cached for the duration of the application live time. One nice and simple way of doing this is by adding the following bit of code to the Global.asax and calling this from the Application_Start() function. In this demo I am going to use a simple book application to show how simple it is to get started with RavenDB. The Problem Solver - Sunday, November 25, 2012 - jQuery UI and touch screens
I really like using jQuery UI in my web applications. For example take a look at the Draggable demo on an iPad. Try for yourself I have created a small demo page here. But even though jQuery UI is very well tested there are some potential issues to keep in mind. One of those is using the jQuery UI controls on touch devices like the iPad. With these touch enabled devices becoming more and more popular support is quite important if you don’t know you exact client configuration. And on most cases a touch event also raises a mouse event but not quite always. Enjoy The Problem Solver - Monday, September 17, 2012 - Using SignalR for real time data updates
In 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. So in this blog post I am using a simple CRUD, without the delete part, application to show the power of SignalR. Updates would be done in a similar fashion with some JavaScript. The Problem Solver - Wednesday, July 25, 2012 - Creating an #AngularJS Controller
'In the previous blog post I showed how to get started with a really minimal AngularJS application. The Controller part of an MVC application is normally the glue that ties a specific part of that application together. The AngularJS Controller The controller that drives the logic of the application is a pretty simple JavaScript constructor function. 1: 2: 3: 4: AngularJS Demo. 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. It also responds to events to do things. The Problem Solver - Wednesday, April 10, 2013 %>
| | |