| |
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.
|
99 Articles match "Web"
See all articles with
"Web"
| The Latest from The Problem Solver | 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 The Problem Solver | 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 - jQuery UI and touch screens
I really like using jQuery UI in my web applications. 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 for that matter, even if you client has standardized on a specific browser, let say Internet Explorer 9 for example, you may notice that there are in fact lots of other “unofficial” devices being used. Enjoy The Problem Solver - Monday, September 17, 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 - HTML5 Video
Video has always been a difficult thing on the web. The problem is in the way the video stream is served from the web. With HTML5 supporting the element that should become a lot easier right? After all you just add a video element, set the source and you are good to go right? If you create a page like this: HTML5 Video demo. video. {. height: 200px; width: 400px; }. < video poster ="[link]. src ="[link]. controls. autoplay > HTML5 Video element not supported. And run it in Google Chrome its start playing just like this: Simple enough right? So what gives? video. {. The Problem Solver - Tuesday, December 13, 2011 - Building rich HTML 5 clients using REST services
You can download the slide from my session on Building rich HTML 5 clients using REST services here and the sample application using the WCF Web API here. The slides are also available on SlideShare. Enjoy! www.TheProblemSolver.nl www.dotnetevents.nl.NET WCF webcast ASP.NET REST dotnetmag HTML5 The Problem Solver - Wednesday, October 26, 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 | - 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 - 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 - No, You Don’t Need A Windows App
You’ll hear people tell you that if you … Continue reading → jQuery Articles Cloud Opinion webDo you think you need a Window’s app for your next project? Here’s a thought: No you don’t. Let me give you one less reason choose the rocky-road of desktop apps today. Michael C. Kennedy's Weblog - Wednesday, April 4, 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 - Preventing JavaScript Files from Loading Multiple Times
In the bottom-right pane, you’ll see the web page running. In real web apps, it’s not that simple. I’ve been working on a JavaScript-heavy web application recently. The web is awesome and the fix is simple enough. Filed under: Uncategorized Tagged: Articles , Cloud , jQuery , Opinion , Tools , Visual Studio , web. Uncategorized Articles Cloud jQuery Opinion Tools Visual Studio webThis post is about ensuring that you do not execute a particular JavaScript file more than one time. Here is a contrived example. twice. Imagine bad-example.js Michael C. Kennedy's Weblog - Thursday, October 11, 2012 %>
| | |