Most recent comments
michael Acker 18/04/2013 18:49
In response to
Consuming RSS feeds in an ASP.NET page
Nice Example....
SINGHXLb 10/04/2013 21:15
In response to
The SimpleMembershipProvider, Secure Passwords And The Crypto Helper
Thanks Mike but i have one question what are values for SaltSize and PBKDF2SubkeyLength ?...
Isaac Koss 09/04/2013 21:55
In response to
Inline Editing With The WebGrid
Unfortunately this does not work in MVC 4. Do you have any ideas on how to do this in MVC 4? Thanks...
Satyabrata Mohapatra 05/04/2013 12:19
In response to
I'm Writing A Book On WebMatrix
Sir,
Today i got the book "Beginning ASP.NET Web Pages with WebMatrix". It is a fantastic book !!...
Boyd Campbell 04/04/2013 20:25
In response to
The WebGrid Helper - Making Selections
If I repopulate the grid with a brand new set of data, the WebGrid is keeping a handle on the row. I...
Derek 03/04/2013 17:35
In response to
Parameter Queries in ASP.NET with MS Access
I am using Microsoft Access 2010 and Visual Studio 2010.
What must be done to handle the case where...
Asit 01/04/2013 08:12
In response to
Cheat Sheet - .NET Framework Exceptions
Great list! I bookmarked this page reference. Thanks! :)...
waqar 01/04/2013 06:12
In response to
Globalization And Localization With Razor Web Pages
excellent article...
Garry 31/03/2013 21:58
In response to
Upload and Crop Images with jQuery, JCrop and ASP.NET
This is an excellent article! Nice one @Mikesdotnetting....
Amit Jahanabadi 30/03/2013 15:54
In response to
Dependency Injection and Inversion of Control with ASP.NET MVC
One of the Best Article on DI & IoC, I have ever read. Thank You!...
Most Popular - Last 7 Days
Most Popular - Last 30 Days
Most Popular - All Time
Latest Entries
Optimising ASP.NET Web Pages Sites - Bundling And Minification
Mikesdotnetting
-
15 September 2012 17:05
ASP.NET 4.5 saw the introduction of new features for improving the performance of web sites. Delivered within a new library called System.Web.Optimization, bundling and minification enables you to combine multiple JavaScript or CSS files into one bundle, and to minify them thereby reducing the number of HTTP requests that browsers have to make, reducing the size of the files, and improving performance of the site overall, especially over slower (read 3G) networks.
Click to read more about Optimising ASP.NET Web Pages Sites - Bundling And Minification ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 12297 times
WebMatrix - jQuery Cascading Dropdown Lists
Mikesdotnetting
-
08 September 2012 09:56
I have looked at cascading dropdown lists with WebMatrix previously, but the approach I featured demonstrated the use of jQuery Templates. At the time, the jQuery Templates project looked promising, but since then, the jQuery team have decided not to take them beyond beta stage. So the reason for this article is to illustrate a more "traditional" jQuery approach to managing cascading dropdown lists when developing ASP.NET Web Pages using WebMatrix.
Click to read more about WebMatrix - jQuery Cascading Dropdown Lists ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 10117 times
ASP.NET Web Pages - Creating Custom Validators
Mikesdotnetting
-
31 August 2012 14:33
Version 2 of the Web Pages framework includes a new validation framework. Included are a number of specific validators that cover common scenarios such as validating for presence, data type or range. It may be however, that you want to create your own custom validator to test for something that isn't covered by the existing validators, or to combine multiple tests in one composite validator. Fortunately, the Web Pages team have made the validation system extensible so that you can create your own validators.
Click to read more about ASP.NET Web Pages - Creating Custom Validators ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 10097 times
Book Review - jQuery Mobile Web Development Essentials
Mikesdotnetting
-
07 August 2012 21:07
The imminent release of Visual Studio (2012) will include jQuery Mobile as part of the ASP.NET MVC 4 Mobile application template, and some enhancements to the framework to make developing for mobile devices much easier. So it was a well-timed invitation that I received from Packt Publishing to review their latest jQuery title: jQuery Mobile Web Development Essentials.
Click to read more about Book Review - jQuery Mobile Web Development Essentials ...
Filed under:
jQuery
Book Review
as
General
Viewed: 2673 times
Working With Entity Framework Code First And JSON In ASP.NET Web Pages
Mikesdotnetting
-
22 July 2012 20:46
If you want to build AJAX powered rich client interfaces with ASP.NET Web Pages, you will work with JSON - a lot. You might also be attracted to the Entity Framework for your data access technology. There are some special considerations to take account of when serialising Entity Framework objects to JSON for use in Web Pages applications. This article explores some of the issues you will encounter through the example of a simple To Do list manager.
Click to read more about Working With Entity Framework Code First And JSON In ASP.NET Web Pages ...
Filed under:
Entity Framework
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 24829 times
Transferring Data Between ASP.NET Web Pages
Mikesdotnetting
-
14 July 2012 20:24
There are a huge number of articles and blog posts on persisting data between user requests in ASP.NET. However, the ASP.NET Web Pages framework introduces a couple of additional mechanisms so this article explores those, as well as reviewing some of the standard approaches already available to Web Pages developers from other parts of the ASP.NET framework.
Click to read more about Transferring Data Between ASP.NET Web Pages ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 44869 times
Validation In Razor Web Pages 2
Mikesdotnetting
-
14 June 2012 12:47
The new release of ASP.NET Web Pages - version 2 - doesn't include many obvious changes, but the most significant one is an enhanced Validation system. A couple of new classes have been introduced, and Web Pages validation now works with the MVC Unobtrusive jQuery validation library. This article explores the new validation system and sees what it brings to the party.
Click to read more about Validation In Razor Web Pages 2 ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 48005 times
Using Knockout With Razor Web Pages In WebMatrix 2
Mikesdotnetting
-
09 June 2012 11:40
Knockout is an increasingly popular JavaScript UI library. Its popularity is likely to increase among ASP.NET developers soon as it comes as part of some of the new MVC 4 site templates. This article looks at what Knockout is, what problems it is intended it solve and how to use it in an ASP.NET Razor Web Pages site built in WebMatrix.
Click to read more about Using Knockout With Razor Web Pages In WebMatrix 2 ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 12162 times
Efficiently Displaying Hierarchical Data With The jQuery Accordion In Razor Web Pages
Mikesdotnetting
-
03 June 2012 10:30
A frequent requirement is to display data hierarchically, such as products by category. This article shows how to use LINQ to Objects and the jQuery Accordion to display the result of a database query in such a fashion within Razor Web Pages.
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 8983 times
View Model Design And Use In Razor Views
Mikesdotnetting
-
26 May 2012 23:21
The recommended practice for transferring data to and from views in ASP.NET MVC is to use a View Model. But what is a View Model? How to you design one and how should they be used? This article attempts to provide answers to those questions.
Click to read more about View Model Design And Use In Razor Views ...
Filed under:
ASP.NET MVC
Razor
as
Tutorial
Viewed: 22811 times
More Flexible Routing For ASP.NET Web Pages
Mikesdotnetting
-
01 February 2012 21:52
The built-in Web Pages routing system offers a fair degree of freedom in terms of how friendly URLs can be constructed and managed. However, the major limitation with the standard routing mechanism is that it relies on matching segments of the URL to files on disk. ASP.NET MVC and Web Forms enjoy a much more flexible routing system. This article looks at a Package that brings full ASP.NET routing control to Web Pages and examines how to use it.
Click to read more about More Flexible Routing For ASP.NET Web Pages ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 14283 times
Using The Themes Helper In Razor Web Pages
Mikesdotnetting
-
02 January 2012 18:31
Web site skinning is a concept where by a web application user can personalise their experience, by choosing from a selection of prepared themes or skins. Each theme or skin might offer a different design, or content, or both. ASP.NET Web Forms has included a comprehensive Themes framework since version 2.0. WebMatrix developers can find Themes management functionality in the ASP.NET Web Helpers Library package available through the Package Manager. This article looks at how the Themes helper works.
Click to read more about Using The Themes Helper In Razor Web Pages ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 12909 times
Building A Razor Web Pages Site With Database First And Entity Framework
Mikesdotnetting
-
30 December 2011 15:25
Since I published an item covering Code First development with Entity Framework and WebMatrix, I have had a few requests to provide a guide to working with the Entity Framework from a database first point of view. This post answers those requests and provides a step by step guide to getting up and running with a WebMatrix web site based on the Northwind sample database that comes with SQL Server CE 4.0.
Filed under:
Entity Framework
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 16826 times
HTML Helpers For Forms In Razor Web Pages
Mikesdotnetting
-
25 December 2011 11:27
A nugget that has remained partially hidden from view within the Web Pages framework is the HtmlHelper class. Parts of this class peek out in the template sites provided in WebMatrix where validation is performed and related messages displayed, but a vast range of methods designed for rendering form inputs are often overlooked in tutorials, blog articles and books (mine included). This article provides an overview of Web Pages HTML Helpers, and digs into one or two in more detail.
Click to read more about HTML Helpers For Forms In Razor Web Pages ...
Filed under:
HTML
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 54515 times
Globalization And Localization With Razor Web Pages
Mikesdotnetting
-
10 October 2011 21:35
Globalization is the process of preparing your site so that it is accessible to as wide an audience as possible. This is largely achieved by presenting content in the native language of the visitor. This article explores how you can approach this task within the ASP.NET Web Pages framework.
Click to read more about Globalization And Localization With Razor Web Pages ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 25032 times


