Items By Type: Tutorial
The WebGrid - Efficient Paging And Sorting With SQL CE 4.0
Mikesdotnetting
-
28 August 2011 22:46
A problem inherent in the existing version of the WebGrid is that it is not very efficient when it comes to paging data out of the box. If you have 10,000 rows of data, and you want to display 10 rows per page, all 10,000 rows are retrieved from the database for each page. The grid works out how to only show the current 10, and wastes the other 9,990 rows. That's a fair sized overhead on each page. Ideally, you should only retrieve the data you need for each page. This article examines how you can do that with the existing WebGrid and a SQL CE database, while still maintaining sorting capabilities.
Click to read more about The WebGrid - Efficient Paging And Sorting With SQL CE 4.0 ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
WebGrid
as
Tutorial
Viewed: 9894 times
jQuery Autocomplete with Razor Web Pages and a SQL CE Database
Mikesdotnetting
-
16 August 2011 09:23
There are a number of autocomplete solutions for jQuery, including the widget that comes as part of the jQuery UI library. This article looks at incorporating the jQuery UI Autocomplete widget into a Razor-based ASP.NET Web Pages site.
Click to read more about jQuery Autocomplete with Razor Web Pages and a SQL CE Database ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 16480 times
WebMatrix and jQuery Forms Part 2 - Editing Data
Mikesdotnetting
-
06 August 2011 17:33
This article continues on from one I wrote a while ago, showing how to use jQuery to create a data entry form in conjunction with the WebGrid. The original article prompted a number of requests to show how to extend the example to provide editing functions, and now I have found some time to answer those requests.
Click to read more about WebMatrix and jQuery Forms Part 2 - Editing Data ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
WebGrid
as
Tutorial
Viewed: 8123 times
Generating RSS and ATOM Feeds In WebMatrix
Mikesdotnetting
-
12 April 2011 12:36
I've previously looked at how to generate RSS feeds for both Web Forms and MVC using a variety of techniques, so it is only right that I look at a couple of ways to do this in Web Pages - the Razor based web development model supported by WebMatrix.
Click to read more about Generating RSS and ATOM Feeds In WebMatrix ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 8146 times
The Difference Between @Helpers and @Functions In WebMatrix
Mikesdotnetting
-
20 March 2011 09:42
This is another post which was inspired by a recent question in the ASP.NET forums, when someone asked what the difference is between @functions and @helpers in ASP.NET Web Pages. Here, I look at both of these contructs and explain what they are, how they are different, and how each should be used appropriately.
Click to read more about The Difference Between @Helpers and @Functions In WebMatrix ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 15959 times
Data Access Choices For WebMatrix
Mikesdotnetting
-
05 March 2011 22:46
When WebMatrix was originally launched, it spurred a lot of activity from people who do not like seeing raw SQL statements in code files, or who perceived a problem working with dynamic objects. Some of these people threw their hands up in horror and tweeted or blogged their displeasure, while others felt the urge to do something about the "problem" as they saw it, and a number of open source data access projects have resulted. I've had a quick look at three projects to see what they might bring to the party.
Click to read more about Data Access Choices For WebMatrix ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 21507 times
Creating A Custom Template For WebMatrix
Mikesdotnetting
-
14 January 2011 23:57
WebMatrix includes a number of pre-built templates that you can use as a basis for developing your site, but wouldn't it be great if you could add new ones? Well, there is a way to do so, and this article looks at the steps required.
Click to read more about Creating A Custom Template For WebMatrix ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 10611 times
The WebGrid Helper - Making Selections
Mikesdotnetting
-
13 January 2011 14:08
The WebGrid helper, introduced via ASP.NET Web Pages, provides a means for displaying tabular data easily. This article examines how to enable selection within the WebGrid at row level.
Click to read more about The WebGrid Helper - Making Selections ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
WebGrid
as
Tutorial
Viewed: 13325 times
Razor, Cascading Select Lists and jQuery Templates - A New Twist
Mikesdotnetting
-
04 January 2011 22:20
jQuery Templates enable easy client-side generation of html. When combined with JSON data or other JavaScript objects, jQuery Templates provide a way to create a dynamic data-driven site without any server-side code whatsoever. However, in this article I will look at how they can be used to produce cascading select lists in a Razor Web Pages site.
Click to read more about Razor, Cascading Select Lists and jQuery Templates - A New Twist ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 22114 times
WebMatrix - URLs, UrlData and Routing for SEO
Mikesdotnetting
-
20 December 2010 12:56
There is a certain amount of debate surrounding the importance of friendly URLs in terms of Search Engine Optimisation and improving your ranking. One thing is certain - having friendly URLs helps users to identify whether the content at the end of a link to your site is likely to be relevant to them or not. This article examines how you can make use of the built-in support for Routing provided by ASP.NET Web Pages to not only create friendly URLs, but to work with parameters as well.
Click to read more about WebMatrix - URLs, UrlData and Routing for SEO ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 15033 times
Nested Layout Pages with Razor
Mikesdotnetting
-
17 December 2010 13:27
Razor Layout pages are the equivalent to MasterPages in ASP.NET Web Forms and the Web Forms View Engine within ASP.NET MVC. Just as it is possible to nest MasterPages, it is also possible to nest Razor Layout pages. This article explores the process required to achieve nesting of Layout pages using the Razor View Engine in MVC 3, or WebMatrix Web Pages sites.
Click to read more about Nested Layout Pages with Razor ...
Filed under:
ASP.NET MVC
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 52476 times
Building Mobile Apps with WebMatrix and jQuery Mobile
Mikesdotnetting
-
12 December 2010 21:52
jquery Mobile was launched just a month or so ago, and is designed to make it as easy to build JavaScript-enabled web applications for mobile phones as for the desktop browser. Still in Alpha, the library has a way to go, but it already offers a rather interesting experience when used as part of a mobile phone targeted web application. Here's a first look at how to use jQuery Mobile with WebMatrix to build a mobile web application.
Click to read more about Building Mobile Apps with WebMatrix and jQuery Mobile ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 31746 times
Using Web Pages Helpers in ASP.NET Web Forms
Mikesdotnetting
-
17 November 2010 15:00
Love it or loathe it, WebMatrix is here. One of the great things about this new way of developing web sites in ASP.NET is the growing selection of helpers it offers. However, there's nothing to stop you taking advantage of this goodness within your Web Forms application. Here are a couple of ways to get a Razor-based helper to appear in your aspx file.
Click to read more about Using Web Pages Helpers in ASP.NET Web Forms ...
Filed under:
ASP.NET Web Forms
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 36130 times
WebMatrix - Testing the WebImage Helper With JCrop
Mikesdotnetting
-
17 October 2010 09:06
My original JCrop article which looked at cropping uploaded images in ASP.NET has proven to be the most popular coding article I've ever written, with more views and comments than any other. Revisiting JCrop in the context of Web Pages gives me the opportunity to have a look at the WebImage helper, and see how that might make uploading and cropping images easier.
Click to read more about WebMatrix - Testing the WebImage Helper With JCrop ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
as
Tutorial
Viewed: 9066 times
WebMatrix - Working With The JSON Helper
Mikesdotnetting
-
15 October 2010 18:51
Javascript Object Notation (JSON) is a data exchange format which really grew in popularity as AJAX libraries took off. It's lightweight and human readable, and is a great way of transferring data structures between the browser and the server. The JSON Helper was added in WebMatrix Beta 2, and this article looks at its main methods, and how they can be used.
Click to read more about WebMatrix - Working With The JSON Helper ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
Razor
as
Tutorial
Viewed: 18736 times


