.NET news » Search results

Search results for query "asp" (244):

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.

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

Read Gmail Inbox Message in ASP.NET

Get into our Gmail inbox in our Web Page
2011-04-28 21:34:00   Source: Read Gmail Inbox Message in 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

ASP.NET Web Pages: Introduction to WebMatrix

This new site editor for ASP.NET Web Pages is different from the usual Microsoft product. See how it simplifies everything from site creation to data access to deployment and even Search Engine Optimization.
2011-03-31 19:00:00   Source: ASP.NET Web Pages: Introduction to...   Tags: Performance

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.

MEF with ASP.NET - "Hello World!"

Basic MEF (Managed Extensibility Framework) with ASP.NET. Extreme barebone "Hello World!" example.
2011-03-11 09:48:00   Source: MEF with ASP.NET - "Hello...   Tags: Examples

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

Creating PDF Documents with ASP.NET and iTextSharp

The Portable Document Format (PDF) is a popular file format for documents. Due to their ubiquity and layout capabilities, it's not uncommon for a websites to use PDF technology. For example, an eCommerce store may offer a "printable receipt" option that, when selected, displays a PDF file within the browser. Last week's article, Filling in PDF Forms with ASP.NET and iTextSharp, looked at how to work with a special kind of PDF document, namely one that has one or more fields defined. A PDF document can contain various types of user interface elements, which are referred to as fields. For instance, there is a text field, a checkbox field, a combobox field, and more. Typically, the person viewing the PDF on her computer interacts with the document's fields; however, it is possible to enumerate and fill a PDF's fields programmatically, as we saw in last week's article.

This article continues our investigation into iTextSharp, a .NET open source library for PDF generation, showing how to use iTextSharp to create PDF documents from scratch. We start with an example of how to programmatically define and piece together paragraphs, tables, and images into a single PDF file. Following that, we explore how to use iTextSharp's built-in capabilities to convert HTML into PDF. Read on to learn more!

2011-03-08 18:00:00   Source: Creating PDF Documents with ASP.NET...   Tags: Internet