Items By Type: Article
WebMatrix And jQuery Forms
Mikesdotnetting
-
10 August 2010 17:23
Even though WebMatrix is still in its first Beta, there have been a few requests in forums already for examples illustrating how to create Web Pages forms powered by AJAX. Building on previous articles, I thought I'd put together a little sample that shows how to do this to add a record to a database using jQuery. Here's how it's done.
Click to read more about WebMatrix And jQuery Forms ...
Filed under:
jQuery
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 1212 times
Looking At The WebMatrix WebGrid
Mikesdotnetting
-
08 August 2010 09:33
One of the most useful helpers provided by ASP.NET Web Pages via WebMatrix is likely to be the WebGrid, which is designed for displaying tabular data. Still in Beta 1, documentation is sparse, so here's a more detailed look the WebGrid Helper.
Click to read more about Looking At The WebMatrix WebGrid ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Article
Viewed: 584 times
Inline Razor Syntax Overview
Mikesdotnetting
-
30 July 2010 15:27
With the launch of WebMatrix, and the announcement of the new Razor View Engine for the next version of ASP.NET MVC, here's a quick guide to Razor syntax.
Click to read more about Inline Razor Syntax Overview ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Article
Viewed: 907 times
Adding And Editing Data In ASP.NET Web Pages
Mikesdotnetting
-
25 July 2010 09:52
In the first of my WebMatrix articles, I mentioned that entering data via the database design forms is a bit of a pain. I also promised to look at editing data via a web page at some stage. This article keeps that promise, and looks at adding data too.
Click to read more about Adding And Editing Data In ASP.NET Web Pages ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 1855 times
Extending ASP.NET Web Pages - Create Your Own Helpers
Mikesdotnetting
-
18 July 2010 21:37
The Beta1 version of WebMatrix comes with a number of Web Pages helpers to make your life simple. These include helpers to work with file uploading, images, email, caching, grids, Twitter feeds and a lot more. I suspect that as the product evolves towards full release, more will be added. Nevertheless, the developers of WebMatrix and Web Pages cannot anticipate every requirement, so there will be a time when you feel you need something extra. Adding your own helpers is quite easy, as this article shows.
Click to read more about Extending ASP.NET Web Pages - Create Your Own Helpers ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 1974 times
Web Pages - Efficient Paging Without The WebGrid
Mikesdotnetting
-
17 July 2010 10:48
If you want to display your data over a number of pages using WebMatrix Beta1, you have two options. One is to use the built-in paging support that comes with the WebGrid helper. But that means that your data will be displayed within an HTML table. If that is not your preferred layout choice, you need to write your own paging code. Let's look at how you can do that.
Click to read more about Web Pages - Efficient Paging Without The WebGrid ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 1946 times
Save And Retrieve Files From a Sql Server CE Database with WebMatrix
Mikesdotnetting
-
09 July 2010 20:28
A perennial choice that web developers have to make is whether to store uploaded files to the file system or a database. Each method has its pros and cons, and the debate over which approach is best continues to rage. This article will not add to the noise. It will simply demonstrate how to upload files to the Sql Server CE database which is the default option in Web Pages, and how to retrieve them for users again.
Click to read more about Save And Retrieve Files From a Sql Server CE Database with WebMatrix ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 609 times
WebMatrix - Consistent Look And Feel With Razor
Mikesdotnetting
-
07 July 2010 22:04
Most web development frameworks provide features that assist with creating a consistent look and feel across pages, or make provision for managing reusable partial content, such as headers and footers. The Web Pages framework is no exception. This article examines the core features offered by its Razor view engine for handling templated layouts and common blocks of content.
Click to read more about WebMatrix - Consistent Look And Feel With Razor ...
Filed under:
ASP.NET Web Pages
WebMatrix
Razor
as
Article
Viewed: 2050 times
WebMatrix - A First Application
Mikesdotnetting
-
06 July 2010 21:35
This article will take a first look at WebMatrix - Microsoft's new IDE for developing Web Pages applications. In it, I will cover a number of the core features that will make Web Matrix the ideal starter's web development framework as I create a very simple application.
Click to read more about WebMatrix - A First Application ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 3855 times
Introducing WebMatrix - An Easier Way To Do ASP.NET
Mikesdotnetting
-
06 July 2010 20:51
There has been a spate of announcements recently from Scott Guthrie, the main Microsoft man responsible for ASP.NET over the last week or so - the launch of IIS Express, a new version of SQL Server Compact Edition (CE) that can be run in medium trust environments, and a new View Engine and syntax called Razor. Each of these announcements have generated a lot of reaction, and they are each significant in themselves. They all make ASP.NET easier for existing developers. However, if you put them all together, and throw in a new framework and IDE, they make ASP.NET much, much easier for new developers coming to ASP.NET for the first time. So that's what Microsoft have gone and done. And today, they have announced the first Beta version of WebMatrix - a head-on competitor to WAMP stacks.
Click to read more about Introducing WebMatrix - An Easier Way To Do ASP.NET ...
Filed under:
ASP.NET Web Pages
WebMatrix
as
Article
Viewed: 1156 times
Classic ASP Include Files in ASP.NET
Mikesdotnetting
-
23 June 2010 07:43
Include files within classic ASP are about the only way to achieve some measure of code-reuse within frameworks that offer little or nothing by way of composition or inheritance. Judging by the number of questions in forums, there are still a lot of people moving across from classic ASP who are puzzled as to how to approach replacing include files within ASP.NET. A number of articles illustrate individually how to do so for site-wide layout reasons, including widgets, reusing global functions, or actually including the content of a file. However, I haven't been able to find one resource that brings all these together, hence the purpose of this article.
Click to read more about Classic ASP Include Files in ASP.NET ...
Filed under:
Classic ASP
ASP.NET Web Forms
as
Article
Viewed: 992 times
Google Sitemap Generation From A Custom SiteMapResult
Mikesdotnetting
-
31 May 2010 20:42
My previous article showed how to use a custom ActionResult and the classes within WCF to generate an RSS feed. There are no similar classes to help build a valid Google Site Map for an ASP.NET MVC application. So here's how your can build your own.
Click to read more about Google Sitemap Generation From A Custom SiteMapResult ...
Filed under:
ASP.NET MVC
as
Article
Viewed: 1892 times
Rss Feed Generation From a Custom RssResult
Mikesdotnetting
-
31 May 2010 09:14
When I looked at producing RSS Feeds in ASP.NET MVC before, I used the ContentResult method to return XML. Best Practice suggests that you should create a new ActionResult if required. So this article looks at creating an RssResult, and a different way to generate the feed itself.
Click to read more about Rss Feed Generation From a Custom RssResult ...
Filed under:
ASP.NET MVC
as
Article
Viewed: 1644 times
jQuery News Scrollers and Tickers with a ListView
Mikesdotnetting
-
21 May 2010 21:12
The jQuery Cycle plug-in is most often used for creating image slide shows. However, it's just as easy to use to create a news scroller from a ListView. Here, I look a doing just that. I also look at an alternative jQuery plug-in (NewsTicker) that gives the effect of the classic BBC News Ticker.
Click to read more about jQuery News Scrollers and Tickers with a ListView ...
Filed under:
ASP.NET 3.5
jQuery
as
Article
Viewed: 2426 times
Sessions and Shopping Carts
Mikesdotnetting
-
03 May 2010 23:36
Managing shopping carts using Sessions is the source of much confusion for beginners to ASP.NET. This article looks at how to do this so that items can be added and removed by customers easily before they commit to their purchase.
Click to read more about Sessions and Shopping Carts ...
Filed under:
ASP.NET 3.5
as
Article
Viewed: 4046 times


