Skip to main content

Home/ ASP.Net MVC/ Contents contributed and discussions participated by Jacques Bosch

Contents contributed and discussions participated by Jacques Bosch

Jacques Bosch

HTML5 Demos and Examples - 3 views

shared by Jacques Bosch on 06 Jan 12 - Cached
  •  
    "HTML 5 experimentation and demos I've hacked together. Click on the browser support icon or the technology tag to filter the demos (the filter is an OR filter)."
Jacques Bosch

Mayday | Alerting companies to problems users experience - 1 views

shared by Jacques Bosch on 15 Dec 11 - No Cached
  •  
    (Not strictly speaking ASP.Net MVC, but very relevant to MVC sites too.) "Mayday detects changes in users behaviour, validation and javascript errors providing insights into users experience & what problems happen."
Jacques Bosch

RequestReduce - Automatic CSS background image optimization and spriting as well as Jav... - 0 views

shared by Jacques Bosch on 14 Dec 11 - No Cached
  •  
    "Super Simple Auto Spriting, Minification and Bundling solution No need to tell RequestReduce where your resources are Your CSS and Javascript can be anywhere - even on an external host RequestReduce finds them at runtime automatically"
Jacques Bosch

NetBash - An Alternative to Endless Admin Pages in Asp.Net Web Applications | lukencode - 2 views

  •  
    "One thing that always annoys me when working on a web app is having to write those inevitable pages full of admin functions some of which are just a single button. When hacking up one such page I had a thought - a plug in library providing a command line for your web app might save me a lot of time. NetBash is what I came up with."
Jacques Bosch

FubuMVC | The MVC framework that doesn't get in your way. - 1 views

  •  
    "FubuMVC is a "Front Controller" pattern-style MVC framework designed for use in web applications built on ASP.NET."
Jacques Bosch

DarthFubuMVC/htmltags - GitHub - 0 views

  •  
    "In general, you should avoid building strings of HTML in your applications. There are plenty of template/view engines that are much more suitable for generating dynamic markup. However, there are some situations that require you to build snippets of HTML from code (e.g., view extensions in FubuMVC or HtmlHelper extensions in ASP.NET MVC). HtmlTags is the best way to build those snippets."
Jacques Bosch

Bundling and Minification in ASP.NET 4.5 « Abhijit's World of .NET - 0 views

  •  
    "Optimizing application performance is a key element for business. There are several ways by which we can optimize the applications performance. It can be done either by server side code optimization, caching or some client side optimization. In this post I am going to discuss about one handy and smart way to optimize web applications performance using Bundling and Minification features which is introduced with ASP.NET 4.5 Developer Preview. ASP.NET 4.5 Developer Preview introduced bundling, which combines multiple JavaScript files for faster loading with less number of requests for download and minification, which reduces the size of JavaScript and CSS files by removing unneeded characters . Combination of these bundling and minification helps web pages to load very faster. Let's have a looks how it works."
Jacques Bosch

Naked Objects MVC has gone fully open source - 1 views

  •  
    " Naked Objects takes a domain object model, written as POCOs but following a few very simple conventions, and dynamically creates one or more complete user interfaces for it, using reflection (not 'code generation' or 'scaffolding'). It is highly effective in support of Domain-Driven Design, OO Modelling, and/or Agile Development. Naked Objects MVC builds upon the core framework to create a complete web-based user interface, using ASP.NET MVC 3. The generic user interface may be customised via the .CSS, by adding custom views, or custom controllers, as needed. Entity Framework is used to persist objects on a database. Security may be handled simply via Forms Authentication and attribute-based authorisation, or more comprehensively via Microsoft WIF and an STS. "
Jacques Bosch

InfoQ: Architecting TekPub - Moving from ASP.NET MVC to Ruby on Rails - 3 views

  •  
    "TekPub is an interesting study in a company who started on ASP.NET MVC and quickly moved to Ruby on Rails. InfoQ had the opportunity to talk with Rob and James about TekPub and their journey from using ASP.NET MVC to Ruby on Rails."
  •  
    Quite a thought provoking interview for us .Net veterans.
Wicked Tunez

Posts in this group - 10 views

started by Wicked Tunez on 27 Jul 11 no follow-up yet
Jacques Bosch

Ben Alman » jQuery throttle / debounce: Sometimes, less is more! - 0 views

  •  
    "jQuery throttle / debounce allows you to rate-limit your functions in multiple useful ways. Passing a delay and callback to $.throttle returns a new function that will execute no more than once every delay milliseconds. Passing a delay and callback to $.debounce returns a new function that will execute only once, coalescing multiple sequential calls into a single execution at either the very beginning or end."
Jacques Bosch

blowery.Web.HttpCompress.xml - kadirtour - for tour company - Google Project Hosting - 0 views

  •  
    " An HttpModule that hooks onto the Response.Filter property of the current request and tries to compress the output, based on what the browser supports"
Jacques Bosch

Speed Up Your Site! 8 ASP.NET Performance Tips (part 3) - Programming Discussions - 0 views

  •  
    " The open source HttpCompress library is very easy to incorporate into an ASP.NET web site. First, download the latest version of HttpCompress from the official web site. "
Jacques Bosch

More on Asynchronous Processing in ASP.NET MVC 3 « Sergey Barskiy's Blog - 1 views

  •  
    "In this post I would like to cover a couple of asynchronous patterns that are available in ASP.NET MVC and jQuery as it is used in MVC."
Jacques Bosch

Using an Asynchronous Controller in ASP.NET MVC - 2 views

  •  
    "The AsyncController class enables you to write asynchronous action methods. You can use asynchronous action methods for long-running, non-CPU bound requests. This avoids blocking the Web server from performing work while the request is being processed. A typical use for the AsyncController class is long-running Web service calls."
Jacques Bosch

AsyncController v/s SessionLess Controller - Imran Baloch's Blog - 1 views

  •  
    " AsyncController is introduced in ASP.NET MVC 2 while SessionLess controller is introduced in ASP.NET MVC 3. AsyncController allows you to perform long running I/O operation(s) without making your thread idle(i.e., waiting for I/O operations to complete). On the other hand, SessionLess controller allows you to execute multiple requests simultaneously for single user, which otherwise execute multiple requests sequentially due to session synchronization. Understanding these concepts may be easy for you but I have seen a lot of guys become confused on these concepts. In this article, I will show you how to use AsyncController and SessionLess controller in ASP.NET MVC application. I will also compare them and tell you what to use when, where, and the why."
Jacques Bosch

John Resig - Revised JavaScript Dictionary Search - 3 views

  •  
    This is some awesome out of the box thinking!
Jacques Bosch

Don't let jQuery's $(document).ready() slow you down - Encosia - 1 views

  •  
    "jQuery's $(document).ready() event is something that you probably learned about in your earliest exposure to jQuery and then rarely thought about again. The way it abstracts away DOM timing issues is like a warm security blanket for code running in a variety of cold, harsh browser windows."
Jacques Bosch

Getting Started with ASP.NET Membership, Profile and RoleManager | JohnnyCoder - 1 views

  •  
    "A new ASP.NET MVC project includes preconfigured Membership, Profile and RoleManager providers right out of the box. Try it yourself - create a ASP.NET MVC application, crack open the web.config file and have a look. "
Jacques Bosch

KISS Your ASP.NET MVC Routes - 0 views

  •  
    "A little bit of thinking and compromise can remove unnecessary complexity from the routes in an MVC application. "
‹ Previous 21 - 40 of 64 Next › Last »
Showing 20 items per page