| |
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.
|
105 Articles match "Web"
See all articles with
"Web"
| The Latest from Maurice de Bejeir | MORE | | Getting started with AngularJS AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. 'Index: Getting started with AngularJS Creating an AngularJS Controller The #AngularJS $scope is not the MVC Model One of the nicer JavaScript frameworks out there to work with must be AngularJS. Now there are quite a few other ones out there and I have used a number of them but AngularJS seems to be the most structured of them. And while it is really powerful it is also really easy to get started with. It isn’t just a library like jQuery or Knockout.js The complete code listing is below. The Problem Solver - Friday, April 5, 2013 Getting started with AngularJS AngularJS is a client side framework for creating rich web applications using JavaScript and HTML. 'One of the nicer JavaScript frameworks out there to work with must be AngularJS. Now there are quite a few other ones out there and I have used a number of them but AngularJS seems to be the most structured of them. And while it is really powerful it is also really easy to get started with. It isn’t just a library like jQuery or Knockout.js where you create the structure and call into the library as you see fit. Maybe not very functional yet but is shows a few of the very important parts. The Problem Solver - Friday, April 5, 2013 DotNed podcast: Mads Kristensen on ASP.NET developer tooling in Visual Studio 2012 and beyond 'For a change an English language podcast :-) In this podcast Maurice de Beijer speaks with Mads Kristensen about web tooling in Visual Studio 2012. Besides the standard build in tooling for web developer they also talk about Web Essentials 2012, the plugin Mads develops in his spare time to give web developers even more features and capabilities. Links: Blog: [link] Web Essentials 2012: [link] Web Developer Checklist: [link] Enjoy! Podcast DotNed The Problem Solver - Friday, March 15, 2013 | | The Best from Maurice de Bejeir | MORE | | Using the WCF Web API in an ASP.NET MVC application Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to add to and use the new WCF Web API a console application using NuGet. Now that works but it is far more likely that you will want to be using IIS and host the REST service as part of a web application. Not that there is anything specific to MVC I need here, all I need is a web site and I could have started with a WebForms application just the same. Just like in this post we can add a reference to the WCF Web API to our project. repo = repo; }. Enjoy! The Problem Solver - Monday, June 13, 2011 Query composition with the ASP.NET Web API Having the ASP.NET Web API as a REST service returning data is kind of nice but to be efficient on the wire we don’t want to return more data that required only to discard it in the client. As we have seen in a previous post just returning a collection data was real easy. As it turns out changing the service so the client can filter data is almost just as easy. In the previous example we returned an IEnumerable. All we need to do is change this to return an IQueryable and most of the work is done. 1: public class ProductsController : ApiController. 6: public IQueryable Get(). 13: {. The Problem Solver - Wednesday, March 21, 2012 | - Getting started with the WCF Web API
Warning: This post is based on a prerelease version of the WCF Web API When designing services the REST style is becoming more and more popular. Enter the WCF Web API The new Web API is supposed to change that and enable a lot more flexibility to create more powerful REST services using WCF. At the moment the Web API is still in a preview state so things might change quite a bit before it is actually released so keep that in mind if you read this some time in the future. The equivalent service using the WCF Web API is very similar. ServiceContract]. Enjoy! The Problem Solver - Tuesday, May 31, 2011 - HTML5 Background tasks using Web Workers
Fortunately there is a fix for this in the form of the new HTML5 Web Workers specification Web workers are relatively well supported, IE9 being the big exception, as you can see from caniuse.com. text( 'Web Worker is not supported :-(' ).prependTo( Communicating with Web Workers. How about browsers that don’t support Web Workers? It turns out that using this chunking approach in the UI is a very decent alternative to using a Web Worker as it prevents the user interface from completely blocking. 1: 2: 3: 4: 5: 6: 7: 8: Start. 9: 10: Stop. 13: }. The Problem Solver - Wednesday, May 2, 2012 - Adding the WCF Web API to a project
Warning: This post is based on a prerelease version of the WCF Web API In my previous blog post I showed how to get started with the new WCF Web API but one thing I skipped is how to install and add it to your project first. The easiest way to get started is to use NuGet and add the WCF Web API package to your project. There are several different packages for the WCF Web API but the one named WebApi.All is the easiest to get started with as it contains all relevant assemblies. So in post I am going to add that information. Install failed. Rolling back. Enjoy! The Problem Solver - Wednesday, June 1, 2011 - DotNed Podcast: Roland Guijt over moderne web ontwikkeling met Knockout.js
In deze podcast spreekt Maurice de Beijer met Roland Guijt over de moderne manier van het ontwikkelen van web applicaties. Verder verteld hij waar hij jQuery allemaal gebruikt en geeft hij diverse tips over het ontwikkelen van single page web applicaties. Roland verteld over het gebruik van Knockout.js voor de data binding van data aan de HTML elementen on de browser. De podcast is hier te downloaden. Voor het gemak kan je natuurlijk ook een RSS feed, iTunes of Zune link gebruiken. Enjoy! TheProblemSolver DotNetEvents. Podcast DotNed dotnetmag HTML5 Knockout The Problem Solver - Monday, February 13, 2012 - Modern Web Development
Modern web development from Maurice Beijer SignalR demo Other demos Enjoy! The PowerPoint and samples from my presentation at the QNH DevDays in Arnhem. HTML5 WebSockets Knockout SignalR TypeScript The Problem Solver - Saturday, November 10, 2012 - Using HTTP status codes in a REST service
The best known of these are the 303 See Other and the 301 Moved Permanently which are used a lot on the web to redirect a browser to another URL. Using HTTP status codes with the WCF Web API returning custom HTTP status codes with the WCF Web API is quite easy. When we try the same URL again with the new function we get the following result: Note that Internet Explorer is focused on web pages not books so it tells us that the webpage is not found and the page header contains the actual HttpStatusCode returned, 404 Not Found in this case. Book GetBook( int id). {. The Problem Solver - Wednesday, July 20, 2011 - HTML5, Google Chrome Frame and older browsers
Consider the following problem: You might be tempted to start working with HTML5 features in your web applications but you have to support older bowsers. So for many HTML5 features there are polyfills available that will let you make older browsers like Internet Explorer 7 or 8 work with the newer API. See a possible list of HTML5 polyfills here. However a number of these is JavaScript based and while that works in older browsers their JavaScript engine is often quite slow as well making it hard to work with. But how about just upgrading the complete browser? simple example. Enjoy! The Problem Solver - Thursday, December 8, 2011 %>
398 Articles match "Web"
See all articles with
"Web"
| The Latest from DevelopMentor | MORE | | Reblogged: What should I learn to get started in.NET and web development? The question they had was: What should I learn to get started in.NET and web development? Now this question was starting from a position of “I’d like to get started with.NET and the web. To go from “ zero to web dev in.NET” I think you should start on these topics, in an iterative fashion: Fundamentals of C# (skip the advanced stuff – async, yield return, etc for now). '[ Note : I am reblogging this post which originally was posted to the LearningLine blog. Hope you all find it useful here as well]. How do I do that?” jQuery basics. Michael C. Kennedy's Weblog - Monday, May 6, 2013 Agile Clinic: Dear Allan, we have a little problem with Agile. The sender has graciously agreed to let me share the mail and my advice with you, all anonymously of course… The sender is new to the team, new to the company, they are developing a custom web app for a client, i.e. they are an ESP or consultancy. 'Consider this blog an Agile Clinic. On Friday an e-mail dropped into my mailbox asking if I could help. the Developers work in sprints, estimating tasks in JIRA as they go. Sprints last three weeks, including planning, development and testing. have been tasked to produce burndowns to keep track of how the Dev cells are doing.” Perhaps both. Allan Kelly's Blog - Sunday, April 28, 2013 A Roundup of MongoDB Management Tools Now there is one less worry in managing your web-scale data. Installs into your web app (provided you’re using Ruby or PHP). My take : This is a very interesting web monitoring app. Designed with security and ease of use, MMS collects statistics on all key server and hardware indicators and then presents the data in a powerful web console. 'I’ve been working with MongoDB for a long time now. Back in the early days, there really were no management tools analogous to RDBMS tools (e.g. SQL Server Management Studio ). The news is good. link]. Admin GUI). Michael C. Kennedy's Weblog - Monday, April 22, 2013 | -
| The Best from DevelopMentor | MORE | - Improve perceived performance of ASP.NET MVC websites with asynchronous partial views
Now, you web app is mostly fast and responsive, but there are certain types of data that just bring the whole thing to a grind. Filed under: Articles Tagged: NET , Articles , ASP.NET , jQuery , MVC , web. Articles.NET ASP.NET jQuery MVC webImagine you’re building an ASP.NET MVC website which has some performance problems. m sure this would never actually happen to you, but imagine you’re facing this problem just for the sake of exploring the possibilities. :-). First a disclaimer / warning. m going to show you how to make your site feel faster without speeding it up. Michael C. Kennedy's Weblog - Tuesday, November 13, 2012 - Understanding Text Encoding in ASP.NET MVC (ASP.NET MVC Foundations Series)
For example, if you were writing a forum web app, you should absolutely be paranoid about what your users are typing into your site. Filed under: Articles Tagged: NET , Foundations , MVC , web. Articles.NET Foundations MVC webThis article covers the various ways in which you might handle text encoding in ASP.NET MVC. You need to be very careful about how you redisplay their input. For example, a friendly forum user might write something like: Nice post, thanks for sharing! On the other hand, they may write: <script src=”[link]. CMS app with rich text editing. Michael C. Kennedy's Weblog - Monday, October 15, 2012 - Download My Web Apps Have HotKeys Too Sample App
I recently blogged about how web apps have hotkeys too. To encourage more developers to add hotkeys to their web applications, I created a jQuery plugin called jQuery.hotKeyMap.js It’s an ASP.NET MVC 3 web app. Filed under: jQuery Tagged: NET , ASP.NET , MVC , Open Source , Plugins , web. jQuery.NET ASP.NET MVC Open Source Plugins weband a sample application. just added a download link for the source code: WebAppsHaveHotKeysTooSample-MichaelKennedy-v1.zip. Hope you find it useful! Cheers, @mkennedy. Michael C. Kennedy's Weblog - Thursday, August 30, 2012 - How Are You Scaling ASP.NET?
Cheers, @mkennedy Filed … Continue reading → Polls.NET ASP.NET MVC polls webThere are some interesting debates out there around scaling ASP.NET. How do you do it? Please fill out this poll and tell the world: Interested in a blog post on this? Take it to the comments section. - Slides and demos from DevWeek 2013
18 Ways Your Brand-New MVC Web Application Can Be Better. Filed under: Speaking Tagged: NET , ASP.NET , Cloud , Conferences , DevelopMentor , jQuery , LearningLine , Speaking , tips , web. Speaking.NET ASP.NET Cloud Conferences DevelopMentor jQuery LearningLine tips webI 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. Watch this space for the demo code as well. Cheers, @mkennedy. %>
| | |