Mikesdotnetting
Name: Mikesdotnetting
Score: 1,002.13
Last Seen: 349 days, 8 hours, 11 minutes ago
Member Since: 9 June, 2009
DotNetShoutout
atom rss
2
Shouts

Globalization And Localization With Razor Web Pages

posted by MikesdotnettingMikesdotnetting 592 days, 15 hours, 20 minutes ago
Monday, October 10, 2011 8:41:25 PM GMT
Globalization And Localization With Razor Web Pages   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.   ASP.NET already provides a localization framework, which is based on Cultures and Resources. Web Pages have a Culture property and a UICulture ... (more)
category: Web Dev | clicked: 15 | 1 comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, Razor, WebMatrix
8
Shouts

ILSpy-Alternative of .NET Reflector

published 625 days, 4 hours, 49 minutes ago posted by dharadhara 626 days, 2 hours, 10 minutes ago
Thursday, September 08, 2011 7:11:32 AM GMT Wednesday, September 07, 2011 9:50:45 AM GMT
Sometimes we need to have decomposer tool or reflector tool for our applications to improve the performance or to know the internals of the assembly we have created. I was using Red Gate .NET Reflector earlier for same as it was free. Now Red Gate has... (more)
category: Web Dev | clicked: 49 | 2 comments | | source: beyondrelational.com
tags: .NET
4
Shouts

Entity Framework Code First Development With WebMatrix

published 627 days, 5 hours, 35 minutes ago posted by MikesdotnettingMikesdotnetting 627 days, 17 hours, 53 minutes ago
Tuesday, September 06, 2011 6:26:05 AM GMT Monday, September 05, 2011 6:07:40 PM GMT
Entity Framework Code First Development With WebMatrix   The existing data access story for WebMatrix is the Database Helper. Microsoft's recommended data access technology going forward is the Entity Framework (EF). This article explores how to use the Code First capability offered by EF within an ASP.NET Web Pages application.   The database helper was introduced to provide an easy way for beginners to use SQL in their web pages. As such, it works well, but has its critics. Some of th... (more)
category: Web Dev | clicked: 29 | 1 comment | | source: www.mikesdotnetting.com
tags: Code first, Entity Framework 4.1, asp net web pages, WebMatrix
4
Shouts

The WebGrid - Efficient Paging And Sorting With SQL CE 4.0

published 633 days, 14 hours, 16 minutes ago posted by MikesdotnettingMikesdotnetting 635 days, 14 hours, 9 minutes ago
Tuesday, August 30, 2011 9:45:16 PM GMT Sunday, August 28, 2011 9:52:00 PM GMT
The WebGrid - Efficient Paging And Sorting With SQL CE 4.0   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 t... (more)
category: Web Dev | clicked: 13 | 3 comments | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, WebGrid helper, Razor
3
Shouts

Displaying Search Results In A WebGrid

published 635 days, 15 hours, 15 minutes ago posted by MikesdotnettingMikesdotnetting 636 days, 19 hours, 58 minutes ago
Sunday, August 28, 2011 8:46:16 PM GMT Saturday, August 27, 2011 4:02:37 PM GMT
Displaying Search Results In A WebGrid   A number of people have run into problems when trying to combine a search or filter form, and a WebGrid. The main issue that arises is when paging or sorting the search result or a filtered subset of it. Here, I look at the cause of the problem and what you can do about it.   Like other articles in this series, the sample code makes use of a SQL CE 4.0 version of the Northwind database. It is available as part of the download that accompanies thi... (more)
category: Web Dev | clicked: 19 | 2 comments | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, jQuery, Razor, WebMatrix
5
Shouts

How To Make A WebGrid Row Clickable

published 638 days, 14 hours, 24 minutes ago posted by MikesdotnettingMikesdotnetting 641 days, 1 hour, 28 minutes ago
Thursday, August 25, 2011 9:37:21 PM GMT Tuesday, August 23, 2011 10:32:36 AM GMT
How To Make A WebGrid Row Clickable   This snippet is one in a series showing how to use jQuery to enhance the behaviour of a Web Pages WebGrid. This example shows how to make an entire row clickable so that the user is taken to another page that displays details of the selected row.   This example makes use of the SQL CE 4.0 version of the Northwind database. It assumes that you have a layout page that references jQuery and includes a RenderSection call to an optional section named "sc... (more)
category: Web Dev | clicked: 30 | 1 comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, jQuery, Razor, WebMatrix
3
Shouts

jQuery Autocomplete with Razor Web Pages and a SQL CE Database

published 645 days, 15 hours, 58 minutes ago posted by MikesdotnettingMikesdotnetting 648 days, 3 hours, 33 minutes ago
Thursday, August 18, 2011 8:02:35 PM GMT Tuesday, August 16, 2011 8:28:24 AM GMT
jQuery Autocomplete with Razor Web Pages and a SQL CE Database   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.   The first file you need is the latest jQuery library, and then you should navigate to the UI download part of the jQuery site. Choose all of the UI Core parts, and then choose Autocom... (more)
category: Web Dev | clicked: 41 | 1 comment | | source: www.mikesdotnetting.com
tags: asp net web pages, jQuery, Razor, Autocomplete, WebMatrix
2
Shouts

WebMatrix and jQuery Forms Part 2 - Editing Data

published 653 days, 21 hours, 44 minutes ago posted by MikesdotnettingMikesdotnetting 656 days, 15 hours, 59 minutes ago
Wednesday, August 10, 2011 2:17:19 PM GMT Sunday, August 07, 2011 8:02:23 PM GMT
WebMatrix and jQuery Forms Part 2 - Editing Data   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.   The initial article uses a sample database I created which contains details of books and their authors. The example code i... (more)
category: Web Dev | clicked: 16 | 1 comment | | source: www.mikesdotnetting.com
tags: asp net web pages, Razor, WebMatrix
5
Shouts

Generating RSS and ATOM Feeds In WebMatrix

published 772 days, 13 hours, 25 minutes ago posted by MikesdotnettingMikesdotnetting 774 days, 22 minutes ago
Wednesday, April 13, 2011 10:36:26 PM GMT Tuesday, April 12, 2011 11:39:14 AM GMT
Generating RSS and ATOM Feeds In WebMatrix   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.   Just to recap, RSS, or Really Simple Syndication is an XML-based way to share or distribute content. ATOM was designed to overcome some of the perceived issues that afflicted RSS, and enjoys som... (more)
category: Web Dev | clicked: 5 | 1 comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, Razor, WebMatrix
5
Shouts

The Difference Between @Helpers and @Functions In WebMatrix

published 795 days, 14 hours, 53 minutes ago posted by MikesdotnettingMikesdotnetting 797 days, 2 hours, 14 minutes ago
Monday, March 21, 2011 9:07:32 PM GMT Sunday, March 20, 2011 9:46:57 AM GMT
The Difference Between @Helpers and @Functions In WebMatrix   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.   Both @helpers and @functions do share one thing in common - they make code reuse a possibility within Web Pages. ... (more)
category: Web Dev | clicked: 1 | comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, Razor, WebMatrix
6
Shouts

Data Access Choices For WebMatrix

published 810 days, 13 hours ago posted by MikesdotnettingMikesdotnetting 811 days, 13 hours, 5 minutes ago
Sunday, March 06, 2011 11:00:47 PM GMT Saturday, March 05, 2011 10:56:26 PM GMT
Data Access Choices For WebMatrix   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 percieved a problem working with dynamic objects. Some of these poeple 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 proj... (more)
category: Web Dev | clicked: 4 | 2 comments | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, WebMatrix
2
Shouts

Creating A Custom Template For WebMatrix

published 859 days, 2 hours, 9 minutes ago posted by MikesdotnettingMikesdotnetting 861 days, 11 hours, 47 minutes ago
Monday, January 17, 2011 9:51:42 AM GMT Saturday, January 15, 2011 12:14:13 AM GMT
Creating A Custom Template For WebMatrix   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.   I have been playing with WebMatrix since its first Beta last July. I must have created hundreds of sites... well, perhaps "sites" stretches it a bit - most of them have been one page examples to test stuff out. H... (more)
category: Web Dev | clicked: 2 | comment | | source: www.mikesdotnetting.com
tags: asp net web pages, WebMatrix
3
Shouts

The WebGrid Helper - Making Selections

published 860 days, 9 hours, 45 minutes ago posted by MikesdotnettingMikesdotnetting 862 days, 21 hours, 31 minutes ago
Sunday, January 16, 2011 2:16:11 AM GMT Thursday, January 13, 2011 2:30:25 PM GMT
The WebGrid Helper - Making Selections   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.   The scenario is a common one - you want to display summary data within a table on a web page, and you want to provide your user with a means by which they can view more detailed information on a particular item in the table, or make changes, such as editing or d... (more)
category: Web Dev | clicked: 12 | comment | | source: www.mikesdotnetting.com
tags: WebGrid helper, asp net web pages, Razor, WebMatrix
2
Shouts

Razor, Cascading Select Lists and jQuery Templates - A New Twist

posted by MikesdotnettingMikesdotnetting 871 days, 13 hours, 35 minutes ago
Tuesday, January 04, 2011 10:26:07 PM GMT
Razor, Cascading Select Lists and jQuery Templates - A New Twist   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.   jQuery Templates are an official jQuery plugin. That means that they a... (more)
category: Web Dev | clicked: 5 | comment | | source: www.mikesdotnetting.com
tags: jQuery Templates, jQuery, Razor, WebMatrix
5
Shouts

WebMatrix - URLs, UrlData and Routing for SEO

published 885 days, 2 hours, 55 minutes ago posted by MikesdotnettingMikesdotnetting 886 days, 12 hours, 32 minutes ago
Wednesday, December 22, 2010 9:06:10 AM GMT Monday, December 20, 2010 11:29:15 PM GMT
WebMatrix - URLs, UrlData and Routing for SEO   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, bu... (more)
category: Web Dev | clicked: 5 | comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, Razor, WebMatrix
5
Shouts

Nested Layout Pages with Razor

published 886 days, 17 hours, 41 minutes ago posted by MikesdotnettingMikesdotnetting 889 days, 22 hours, 19 minutes ago
Monday, December 20, 2010 6:20:11 PM GMT Friday, December 17, 2010 1:42:22 PM GMT
Nested Layout Pages with Razor   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.   You would consider using nested layout pages if you were building a corporate site for a glo... (more)
category: Web Dev | clicked: 17 | comment | | source: www.mikesdotnetting.com
tags: ASP.NET MVC 3, Razor, WebMatrix
3
Shouts

Building Mobile Apps with WebMatrix and jQuery Mobile

published 893 days, 10 hours, 2 minutes ago posted by MikesdotnettingMikesdotnetting 894 days, 14 hours, 4 minutes ago
Tuesday, December 14, 2010 1:58:42 AM GMT Sunday, December 12, 2010 9:56:45 PM GMT
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. (more)
category: Web Dev | clicked: 7 | comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, Razor, WebMatrix, ASP.NET
3
Shouts

Using Web Pages Helpers in ASP.NET Web Forms

published 918 days, 17 hours, 31 minutes ago posted by MikesdotnettingMikesdotnetting 919 days, 16 hours, 48 minutes ago
Thursday, November 18, 2010 6:29:45 PM GMT Wednesday, November 17, 2010 7:12:38 PM GMT
Using Web Pages Helpers in ASP.NET Web Forms   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.   I have already written quite extensively about WebMatrix and ASP.NET Web Pages. The new... (more)
category: Web Dev | clicked: 2 | 2 comments | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, ASP .NET, Razor, Web forms, WebMatrix
5
Shouts

WebMatrix - Testing the WebImage Helper With JCrop

published 950 days, 21 hours, 17 minutes ago posted by MikesdotnettingMikesdotnetting 951 days, 3 hours, 49 minutes ago
Sunday, October 17, 2010 2:44:08 PM GMT Sunday, October 17, 2010 8:11:36 AM GMT
WebMatrix - Testing the WebImage Helper With JCrop   My original article which looked at using JCrop for cropping uploaded images in ASP.NET has proven to be the most popular coding article I've ever written, with more views and comments that 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.   Just to recap, JCrop is a jQuery plugin which allows users t... (more)
category: Web Dev | clicked: 7 | comment | | source: www.mikesdotnetting.com
tags: ASP.NET Web Pages, jQuery, JCrop, WebMatrix
7
Shouts

WebMatrix - Working With The JSON Helpers

published 950 days, 21 hours, 17 minutes ago posted by MikesdotnettingMikesdotnetting 952 days, 13 hours, 51 minutes ago
Sunday, October 17, 2010 2:44:08 PM GMT Friday, October 15, 2010 10:09:59 PM GMT
WebMatrix - Working With The JSON Helpers   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. JSON Helpers were added in WebMatrix Beta 2, and this article looks at them, and how they can be used.   The 3 main helper methods within Web Pages are Json.Encode(), Json.Decode() and Json.Write(). The ... (more)
category: Web Dev | clicked: 26 | comment | | source: www.mikesdotnetting.com
tags: asp net web pages, Razor, WebMatrix
Previous 1 2 3 Next