.NET news » ASP.NET ASP.NET Rss Feed

Professional ASP.NET 3.5: In C# and VB (Programmer to Programmer)
Authors: Bill Evjen, Scott Hanselman, Devin Rader
Average rating: 4.0 / 26
(26 reviews)
More .NET ASP.NET books
download
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.
30 Oct 2006, 12:46:08   Source: Extending the ASP.NET 2.0 Resource-Provider Model   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..

24 Oct 2006, 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

19 Oct 2006, 19:00:00   Source: Online Article: ASP.NET 2.0 Web Part Infrastructure   Tags: ASP.NET
7 Easy Steps to Building Your Idea Around Amazon Web Services
This article is a simple, step-by-step guide for those who have ideas and want to quickly implement them. We'll use code to demonstrate how easy it is to build an application on Amazon S3. We'll also highlight questions that you may ask before releasing an application.
Single Sign-On: A Developer's Introduction To Active Directory Federation Services
Use Active Directory Federation Services to allow other organizations to use your Web applications without the need for you to grant access to their users individually.
16 Oct 2006, 10:35:34   Source: Single Sign-On: A Developer's Introduction To Active...   Tags: ASP.NET
Editable Nested DataGrid
Fully Editable Nested DataGrid with Add, Edit, Update and Delete features on both Parent and Child grids.
12 Oct 2006, 08:52:00   Source: Editable Nested DataGrid   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.

10 Oct 2006, 19:00:00   Source: Examining ASP.NET 2.0's Membership, Roles, and Profile -...   Tags: ASP.NET
Compilation and Deployment in ASP.NET 2.0
Compilation and deployment are key features that ASP.NET developers should understand quite well. Find out how the process works and what options are available to compile and deploy your applications effectively.
6 Oct 2006, 22:31:56   Source: Compilation and Deployment in ASP.NET 2.0   Tags: ASP.NET
Prevent Users from Submitting a Form Twice

When a user clicks a submit button in a form, their browser makes a request back to the web server for the specified URL. On the web server, the user's input is processed and some action is taken based on the input. A database record might be added, an email might be sent, and so on. One potential issue that can arise is if a user submits a form, but there is a delay in getting back a response from the server. A user may think that the button click didn't "take", so they click it again. This can lead to two form submissions, resulting in two database records being added, two emails being sent, or whatever. Two possible methods to prevent it described in the atricle.

3 Oct 2006, 19:00:00   Source: Prevent Users from Submitting a Form Twice   Tags: ASP.NET
TabStrip within ASP.NET 2.0 - Building a Composite Control
A WebForms TabStrip control.