.NET news » Search results

Search results for query "MVC" (63):

An Example to Use jQuery Grid Plugin in MVC - Part 1

This article presents a simple example on how to use jQuery Grid Plugin in MVC.

Webpart/Portlet development in ASP.NET MVC Framework

Solution adorned with drag and drop Portlet/Webpart customization feature in ASP.NET MVC Framework. It summoned JQuery for better user experience evading inclusive page refresh during personalization.

Web Migration: Moving Your Web App from WebMatrix to ASP.NET MVC 3

The Web Pages page-centric programming model supported by WebMatrix is a great way to get Web apps up and running. If you later decide that embracing ASP.NET MVC would give you more flexibility, you're covered. We’ll explain why you might choose to migrate and show you how to do it.
2011-05-01 19:00:00   Source: Web Migration: Moving Your Web App from WebMatrix to...   Tags: ASP.NET

MVC Bricks for ASP.net

Learn how to create a simple game using ASP.net MVC, jQuery, State Machine and CSS3 gradients
2011-04-28 22:48:00   Source: MVC Bricks for ASP.net   Tags: ASP.NET

Using JavaScript View Engines in the ASP.NET MVC

In this article is explained how client-side view engine can be used in ASP.NET MVC

Introduction to ASP.NET MVC 3

Introduction to ASP.NET MVC 3 framework and How to create an application using ASP.NET MVC 3
2011-04-28 07:59:00   Source: Introduction to ASP.NET MVC 3   Tags: ASP.NET

Use MvcContrib Grid to Display a Grid of Data in ASP.NET MVC

The past six articles in this series have looked at how to display a grid of data in an ASP.NET MVC application and how to implement features like sorting, paging, and filtering. In each of these past six tutorials we were responsible for generating the rendered markup for the grid. Our Views included the <table> tags, the <th> elements for the header row, and a foreach loop that emitted a series of <td> elements for each row to display in the grid. While this approach certainly works, it does lead to a bit of repetition and inflates the size of our Views.

The ASP.NET MVC framework includes an HtmlHelper class that adds support for rendering HTML elements in a View. An instance of this class is available through the Html object, and is often used in a View to create action links (Html.ActionLink), textboxes (Html.TextBoxFor), and other HTML content. Such content could certainly be created by writing the markup by hand in the View; however, the HtmlHelper makes things easier by offering methods that emit common markup patterns. You can even create your own custom HTML Helpers by adding extension methods to the HtmlHelper class.

MvcContrib is a popular, open source project that adds various functionality to the ASP.NET MVC framework. This includes a very versatile Grid HTML Helper that provides a strongly-typed way to construct a grid in your Views. Using MvcContrib's Grid HTML Helper you can ditch the <table>, <tr>, and <td> markup, and instead use syntax like Html.Grid(...). This article looks at using the MvcContrib Grid to display a grid of data in an ASP.NET MVC application. A future installment will show how to configure the MvcContrib Grid to support both sorting and paging.

2011-03-15 19:00:00   Source: Use MvcContrib Grid to Display a...   Tags: Other

ASP.NET MVC Editable DataTable with JQuery

This article show how editable datatabse can be created in ASP.NET MVC using JQuery DataTables Editable plugin
2011-03-10 17:10:00   Source: ASP.NET MVC Editable DataTable with...   Tags: ASP.NET

Server-Side Paging with the Entity Framework and ASP.NET MVC 3

You don't always need to get huge amounts of data with your database queries. See how Julie Lerman uses new features of ASP.NET MVC 3 and Entity Framework to perform efficient server-side paging when you don't need to return those big data payloads.

RIA Frameworks: Building Data-Centric Web Apps with ASP.NET MVC and Ext JS

JavaScript frameworks provide an alternative to plug-ins for rich web app front ends. We'll show you how to use the Ext JS library and ASP.NET MVC to quickly build a robust data-centric solution.
2011-03-02 18:00:00   Source: RIA Frameworks: Building Data-Centric Web Apps with...   Tags: Build