.NET news » Search results

Search results for query "MVC" (63):

OOP in ASP.NET MVC 3.0 despite of the Razor

OOP is still alive, and we can learn Razor (us) to behave this way...
2011-02-24 00:29:00   Source: OOP in ASP.NET MVC 3.0 despite of...   Tags: ASP.NET

ASP.NET Application Development Using MVC

A sample ASP.NET application development using MVC.

FluentFilters for ASP.NET MVC 3 - Register global filters by specified conditions

This article describes how to use the FluentFilters library with ASP.NET MVC 3 to add support for criteria for global filters.
2011-02-10 14:45:00   Source: FluentFilters for ASP.NET MVC 3 -...   Tags: ASP.NET

Integrating jQuery DataTables plugin into MVC applications

This article contains code samples which explain how jQuery DataTables plugin can be integrated into ASP.NET MVC applications

Displaying a Sorted, Paged, and Filtered Grid of Data in ASP.NET MVC

Over the past couple of months I've authored five articles on displaying a grid of data in an ASP.NET MVC application. The first article in the series focused on simply displaying data. This was followed by articles showing how to sort, page, and filter a grid of data. We then examined how to both sort and page a single grid of data. This article looks at how to add the final piece to the puzzle: we'll see how to combine sorting, paging and filtering when displaying data in a single grid.

Like with its predecessors, this article offers step-by-step instructions and includes a complete, working demo available for download at the end of the article. Read on to learn more!

2011-02-08 18:00:00   Source: Displaying a Sorted, Paged, and Filtered Grid of Data in...   Tags: ASP.NET

Announcing MvcMailer - Send Emails Using ASP.NET MVC View

MvcMailer NuGet package allows you to render MVC View as Email Body
2011-01-28 10:00:00   Source: Announcing MvcMailer - Send Emails...   Tags: ASP.NET

ASP.NET, MVC 3, the Razor View Engine and Google Maps

A quick walk-through of getting Google Maps running in MVC 3 with the Razor View Engine
2011-01-26 11:10:00   Source: ASP.NET, MVC 3, the Razor View...   Tags: ASP.NET

Sorting and Paging a Grid of Data in ASP.NET MVC

This article is the fifth installment in an ongoing series on displaying a grid of data in an ASP.NET MVC application. Previous articles in this series examined how to sort, page, and filter a grid of data, but none have looked at combining one or more of these features in a single grid. This article and the next one show how to merge these features into a single grid. In particular, this article looks at displaying a grid that can handle both sorting and paging. The subsequent article will examine combining sorting, paging and filtering.

Like with its predecessors, this article offers step-by-step instructions and includes a complete, working demo available for download at the end of the article. Read on to learn more!

Filtering a Grid of Data in ASP.NET MVC

This article is the fourth installment in an ongoing series on displaying a grid of data in an ASP.NET MVC application. The previous two articles in this series - Sorting a Grid of Data in ASP.NET MVC and Displaying a Paged Grid of Data in ASP.NET MVC - showed how to sort and page data in a grid. This article explores how to present a filtering interface to the user and then only show those records that conform to the filtering criteria.

In particular, the demo we examine in this installment presents an interface with three filtering criteria: the category, minimum price, and whether to omit discontinued products. Using this interface the user can apply one or more of these criteria, allowing a variety of filtered displays. For example, the user could opt to view: all products in the Condiments category; those products in the Confections category that cost $50.00 or more; all products that cost $25.00 or more and are not discontinued; or any other such combination.

Like with its predecessors, this article offers step-by-step instructions and includes a complete, working demo available for download at the end of the article. Read on to learn more!

2011-01-18 18:00:00   Source: Filtering a Grid of Data in ASP.NET MVC   Tags: Examples

Displaying a Paged Grid of Data in ASP.NET MVC

This article demonstrates how to display a paged grid of data in an ASP.NET MVC application and builds upon the work done in two earlier articles: Displaying a Grid of Data in ASP.NET MVC and Sorting a Grid of Data in ASP.NET MVC. Displaying a Grid of Data in ASP.NET MVC started with creating a new ASP.NET MVC application in Visual Studio, then added the Northwind database to the project and showed how to use Microsoft's Linq-to-SQL tool to access data from the database. The article then looked at creating a Controller and View for displaying a list of product information (the Model).

Sorting a Grid of Data in ASP.NET MVC enhanced the application by adding a view-specific Model (ProductGridModel) that provided the View with the sorted collection of products to display along with sort-related information, such as the name of the database column the products were sorted by and whether the products were sorted in ascending or descending order. The Sorting a Grid of Data in ASP.NET MVC article also walked through creating a partial view to render the grid's header row so that each column header was a link that, when clicked, sorted the grid by that column.

In this article we enhance the view-specific Model (ProductGridModel) to include paging-related information to include the current page being viewed, how many records to show per page, and how many total records are being paged through. Next, we create an action in the Controller that efficiently retrieves the appropriate subset of records to display and then complete the exercise by building a View that displays the subset of records and includes a paging interface that allows the user to step to the next or previous page, or to jump to a particular page number, we create and use a partial view that displays a numeric paging interface

Like with its predecessors, this article offers step-by-step instructions and includes a complete, working demo available for download at the end of the article. Read on to learn more!