.NET news » Search results

Search results for query "net" (410):

Adding Configuration Support for Custom Providers in Enterprise Library in ASP.NET 2.0

By adding configuration design support, you can make your custom providers look and feel just like the built-in providers, letting users select them and provide settings through the Configuration Console.
2007-01-04 20:09:44   Source: Adding Configuration Support for Custom Providers in...   Tags: ASP.NET

ClickOnce: Delivering .NET Applications Via the Net

With ClickOnce, Microsoft delivers a client-side application deployment and updating solution that offers a glimpse into the future, where centrally-located and managed applications delivered via the Web don't have to run in interface-challenged browsers.
2007-01-02 19:12:28   Source: ClickOnce: Delivering .NET...   Tags: Other

Master .NET's Text Tricks

Learn how to use the Graphics object's methods to draw text in different fonts—clipped, wrapped, aligned, stretched, and rotated in all sorts of ways.
2006-12-28 20:50:09   Source: Master .NET's Text Tricks   Tags: Graphics

ASP.NET 2.0 Web Part Infrastructure and SharePoint 2007

In this article I intend to discuss Web Part connections, and finally finish at writing and deploying custom Web Parts in SharePoint 2007..
2006-12-28 18:00:00   Source: ASP.NET 2.0 Web Part Infrastructure...   Tags: SharePoint

Integrating .NET Code and SQL Server Reporting Services

SQL Server Reporting Services versions 2000 and 2005 (SSRS) has many powerful features. SSRS has a well-designed data access engine, a great set of layout tools, and an excellent expression system for creating complex formulas. While the expression system is quite powerful it is not suitable for all applications. This is where SSRS shines. SSRS gives developers the ability to add custom code to their report layouts. This article demonstrates adding custom code to SQL Server Reporting Services reports.

2006-12-28 18:00:00   Source: Integrating .NET Code and SQL Server...   Tags: Database

Output Caching in ASP.NET 2.0

One of the most sure-fire ways to improve a web application's performance is to employ caching. Caching takes some expensive operation and stores its results in a quickly accessible location. ASP.NET version 1.0 introduced two flavors of caching:

  • Output Caching - caches the entire rendered markup of an ASP.NET web page or User Control for a specified duration.
  • Data Caching - a programmatically-accessible, in-memory data cache for storing objects in the web server's memory.

For a more in-depth discussion on ASP.NET 1.x's caching capabilities, refer to Scott McFarland's Caching with ASP.NET and Steve Smith's ASP.NET Caching: Techniques and Best Practices articles.

In ASP.NET 2.0, the caching system has been extended to include SQL cache dependencies, cache profiles, and post-cache substitution for output cached pages. The Caching for Performance section of the ASP.NET 2.0 QuickStarts provides a good overview of ASP.NET 2.0's caching options. This article explores output caching in ASP.NET 2.0, starting with an overview of output caching and followed by a detailed look at creating pages that include both cached and non-cached markup using fragment caching and post-cache substitution techniques.

2006-12-12 18:00:00   Source: Output Caching in ASP.NET 2.0   Tags: ASP.NET Performance

Explore ASP.NET 2.0 Web Part Infrastructure

Web Parts can help you build better Web sites. Find out why and learn the ins and outs of building and deploying them.
2006-12-11 22:17:13   Source: Explore ASP.NET 2.0 Web Part...   Tags: ASP.NET

Build a Poll System in ASP.NET

Explains how to build poll application in ASP.NET. Includes sample project with source code.
2006-12-11 11:42:16   Source: Build a Poll System in ASP.NET   Tags: ASP.NET Examples

ADO.NET vNext Part 2: Using the Object Services Layer

The Entity Data Model and ADO.NET vNext let you deal with tabular data as objects, eliminating much of the effort endemic to older data-retrieval and modification code.
2006-12-08 12:04:48   Source: ADO.NET vNext Part 2: Using the...   Tags: Database

Concurrent model in ADO.NET, ways those allow to negotiate disconnected model restrictions

The most popular instrument to access database data for .NET applications is ADO.NET. This set of components contains three main classes those are used to manipulate and store data: DataReader, DataSet and DataAdapter. DataReader is only able to read data and can't work as data source for data-aware components like DataGridView; DataSet provides all interfaces to be a data source but disconnected model considers some restrictions that can become important for some kind of applications, especially for desktop programs that work under multiuser concurrent environment and change database data actively. Below we consider main restrictions and popular ways to solve them; non standard solutions are considered also.
2006-12-06 06:25:09   Source: Concurrent model in ADO.NET, ways...   Tags: Database