New Features in WebMatrix 2 Beta

Microsoft have released a Beta of WebMatrix 2, available for download here. New Features in WebMatrix 2 Beta Check out all the new features and improvements we’ve added and learn how WebMatrix can help you build new websites faster than ever.

ASP.NET Read more

WebMatrix – Publishing your Site

We’ve finally reached the end of this tutorial series, and the final step is to now publish the blog we’ve developed onto a production environment. Web Matrix uses the Web Deploy functionality (located at C:\Program Files\IIS\Microsoft Web Deploy V2\msdeploy.exe) to deploy web sites locally or remotely.

ASP.NET Read more

WebMatrix – Using Inner Join Queries

In this post we’re going to set up a ‘Popular Posts’ section in the right hand column to attract readers to the most interesting content on our blog. This simple tutorial is a good example of linking database tables in WebMatrix and using inner joins to query between them.

ASP.NET Read more

WebMatrix – Authentication and Authorization

In this post, we’ll look at the authentication and authorization capabilities within WebMatrix to secure access to the content management pages to site administrators.

ASP.NET Read more

WebMatrix – Uploading Images with the FileUpload Helper

The final section in adding and editing blog posts is to add the functionality to upload a photo with each blog post. To do this we will use the WebMatrix FileUpload helper.

ASP.NET Read more

WebMatrix – Working with Foreign Key Relationships

In the last post which described Adding and Editing blog posts, we left out the Category field as linking the relationship in a form is a little more complicated then how the other fields are included. This post shows how to link tables using a foreign key relationship.

ASP.NET Read more

WebMatrix – Adding and Editing Data

We have a blog site which displays blog posts, so now we need to create a section for the blog owner to add, edit and delete posts. We’ll do this with the WebMatrix WebGrid helper, which is an easy to use helper that displays data in a table with full support support for paging, sorting and formatting.

ASP.NET Read more

WebMatrix – Retrieving Content from a Database

WebMatrix introduces the concept of Helpers, which are components that simplify common tasks in developing a WebMatrix application. The list of Helpers is located at the System.Web.Helpers Namespace at MSDN, and we will be using some of the common ones throughout this series.

ASP.NET Read more