.NET news » Search results

Search results for query "net" (410):

ASP.NET 2.0 CSS Friendly Control Adapters 1.0 Released!

Have you ever wanted to emit standards compliant and CSS based markup rather than the default table based markup provided in ASP.NET 2.0? Adaptive control behavior in ASP.NET 2.0 gives you the ability to customize the functionality of ASP.NET controls.
2006-11-30 18:56:11   Source: ASP.NET 2.0 CSS Friendly Control...   Tags: ASP.NET

.NET Framework Assemblies: GAC, Creating and Browsing Assembly Content

Explains the concept of Global Assembly Cache, how to create assembly without Visual Studio .NET and how to view assembly's content.
2006-11-13 11:42:15   Source: .NET Framework Assemblies: GAC,...   Tags: Other

Programming Windows Mobile 5.0 Applications Using the .NET Compact Framework

Visual Studio 2005 is the premier development platform for Windows Mobile 5.0. This article explores its new capabilities in detail.

Take a Leap Forward with ADO.NET vNext (Part 1)

ADO.NET vNext is a leap forward in database programming, using mapping files to isolate your applications from relational database schema changes, and letting you choose whether to deal with data directly as objects or as tabular data.
2006-11-03 13:18:08   Source: Take a Leap Forward with ADO.NET...   Tags: Database

Web Control Enhancements in ASP.NET 2.0

ASP.NET 2.0 does not break any existing controls from 1.1, but it adds a whole bunch of new ones, as well as several new technologies for control development.
2006-11-01 17:50:20   Source: Web Control Enhancements in ASP.NET 2.0   Tags: ASP.NET

Using Enterprise Library in ASP.NET 2.0 Partial Trust Mode

The Enterprise Library Application Blocks aren't useful only in Windows Forms applications; you can use them in ASP.NET too by downloading a set of patch files and configuring the security settings appropriately. Find out how.
2006-10-31 18:02:26   Source: Using Enterprise Library in ASP.NET...   Tags: ASP.NET Security

Extending the ASP.NET 2.0 Resource-Provider Model

ASP.NET 2.0 has unleashed a number of wonderful improvements for localizing Web applications. This article will help you apply extensibility features of ASP.NET to handle enterprise localization scenarios and improve your localization-development process.
2006-10-30 12:46:08   Source: Extending the ASP.NET 2.0...   Tags: ASP.NET

Creating a Tag Cloud in ASP.NET

In this article we'll examine how to build a tag cloud in ASP.NET. In this article we'll focus on accomplishing this through code in an ASP.NET page's code-behind class. In a future article, we'll move this code out of the ASP.NET page and into a stand alone, custom, compiled server control that supports data binding, use of declarative data source controls, and so on..

2006-10-24 19:00:00   Source: Creating a Tag Cloud in ASP.NET   Tags: ASP.NET

Online Article: ASP.NET 2.0 Web Part Infrastructure

Online Article: ASP.NET 2.0 Web Part Infrastructure

Web applications today do a number of things. They could be a banking site, a content management system, or a news Web site. In spite of the diversity of Web applications available today, it almost always makes sense to break a Web page into smaller, reusable widgets

2006-10-19 19:00:00   Source: Online Article: ASP.NET 2.0 Web Part...   Tags: ASP.NET

Examining ASP.NET 2.0's Membership, Roles, and Profile - Part 6

The Membership API in the .NET Framework provides the concept of a user account and associates with it core properties: username, passsword, email, security question and answer, whether or not the account has been approved, whether or not the user is locked out of the system, and so on. However, depending on the application's needs, chances are your application needs to store additional, user-specific fields. For example, an online messageboard site might want to also allow users to specify a signature, their homepage URL, and their IM address.

ASP.NET 2.0 Profile system can be used to store user-specific information. The Profile system allows the page developer to define the properties she wants to associate with each user. Once defined, the developer can programmatically read from and assign values to these properties. The Profile system accesses or writes the property values to a backing store as needed. Like Membership and Roles, the Profile system is based on the provider model, and the particular Profile provider is responsible for serializing and deserializing the property values to some data store. The .NET Framework ships with a SqlProfileProvider class by default, which uses a SQL Server database table (aspnet_Profile) as its backing store.

In this article we will examine the Profile system - how to define the user-specific properties and interact with them programmatically from an ASP.NET page - as well as look at using the SqlProfileProvider that ships with .NET 2.0.

2006-10-10 19:00:00   Source: Examining ASP.NET 2.0's Membership,...   Tags: ASP.NET