Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP.Net > User Management
Search:
What's New - What's Hot
Listings for Cookies Cookies (8)
Listings for Login Login (40)
Listings for Passwords Passwords (21)
Listings for Rollover image Rollover image (2)
Listings for User Controls User Controls (217)
Listings for User language User language (0)
Listings for User Management User Management (34)
 


A Basic ASP.NET Pager Control        
Total Hits: 14  |  Today: 0 Author: Tony Williams       Rating:  
Read Reviews | Write Review |   Your Rating: 

This control provides a simple method for adding paging functionality to your ASP.NET site. The control itself is not "attached" to any data source; instead, that is left up to you, the developer, to take care of. I currently work for a Web development company (Thap) in Middlesbrough, UK, and was working on a project that required paging in several parts. The project was using Repeaters for displaying data that the pager would work with, but after unsuccessfully searching for existing controls t...

Understanding ASP.NET User Control        
Total Hits: 10  |  Today: 0 Author: Anand Narayanaswamy       Rating:  
Read Reviews | Write Review |   Your Rating: 

With ASP.NET, you can develop websites with uniform look and feel with the help of User Controls. Moreover, you only need to update a single page and the related changes are reflected across all the web page....

Loading Web User Controls Dynamically in ASP.NET Pages        
Total Hits: 16  |  Today: 0 Author: acqy       Rating:  
Read Reviews | Write Review |   Your Rating: 

The principle of loading web user controls dynamically is easy, that is to use the PlaceHolder control. However it is not easy to make the dynamically loaded controls working properly if we missed some key points. Detailed information about how to use web user controls dynamically is introduced in this article. Firstly, remember to use LoadControl method instead of creating the new instance of the web user control. Using the new operator to create the instance of the web user control won't work ...

Using the Wizard control of ASP.NET        
Total Hits: 13  |  Today: 0 Author: Bipin Joshi       Rating:  
Read Reviews | Write Review |   Your Rating: 

Some times the data to be accepted from the user is too much and splitting the entire form into multiple logical sections is desirable. In classic ASP or even ASP.NET 1.x developers used to create multiple web forms each containing a part of the total information thus creating a wizard. However, this approach was often proved to be complex and time consuming. ASP.NET provides Wizard server control that allows hassle free development of such web forms. In this article we are going to see how to ...

Creating a Dynamic Data-Driven User Interface (Part 4)        
Total Hits: 12  |  Today: 0 Author: Scott Mitchell       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is the fourth and final installment of a series that examines how to build a data-driven web applications that offers dynamic user interfaces. Over the past three articles we created a sample web application that allows for numerous law firms to log in to the site and manage their clientele. Client data is dispursed across fixed and dynamic data models. The fixed data model contains a set of client attributes common to all law firms - FirstName, LastName, Email, and so forth - while...

Implementing Search in ASP.NET with Google Custom Search        
Total Hits: 13  |  Today: 0 Author: Scott Mitchell       Rating:  
Read Reviews | Write Review |   Your Rating: 

ASP.NET's site map feature and SiteMapPath, TreeView, and Menu controls help visitors navigate your site and find the information they are looking for. However, ASP.NET does not provide any built-in functionality for search, which is the most common way people find information online. This is unfortunate because it gives ASP.NET developers the impression that search is not essential, but that couldn't be farther from the truth. Companies like Google and Yahoo! have made search part of the de fac...

Creating a Dynamic Data-Driven User Interface (Part 3)        
Total Hits: 11  |  Today: 0 Author: Scott Mitchell       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is the third installment of a four-part series that examines how to build a data-driven web applications that offers dynamic user interfaces. Over the past two articles we created a sample web application that allows for numerous law firms to log in to the site and manage their clientele. The application's data model contains a Clients table that defines the fixed attributes for a client - ClientId, CustomerId, FirstName, LastName, and so on. All law firms have these fixed attribute...

Manage Web Users With Custom Profile Providers        
Total Hits: 18  |  Today: 0 Author: Jason N. Gaylord       Rating:  
Read Reviews | Write Review |   Your Rating: 

With ASP.NET 2.0, you can add authentication, authorization, and profiles to your Web site without writing a single line of code. That's quite a step forward from the way things used to be. Like most of the new features in ASP.NET 2.0, authentication, authorization, and profiles each have their own built-in providers. You can think of providers as modules that contain the methods for a particular task. These providers are quite flexible-they can be customized by specifying attributes that pass i...

DHTML-Enabled ASP.NET Controls        
Total Hits: 7  |  Today: 0 Author: Dino Esposito       Rating:  
Read Reviews | Write Review |   Your Rating: 

In the past, I've covered some core aspects of the interaction between DHTML behaviors, the browser, and ASP.NET runtime (see Cutting Edge: Extend the ASP.NET DataGrid with Client-side Behaviors and Cutting Edge: Moving DataGrid Rows Up and Down). But I haven't covered the intricacies of DHTML behaviors and advanced client-side scripting so I'll do that here. I'll show how to make ASP.NET code and the Internet Explorer DHTML Document Object Model (DOM) work together and discuss how you set up th...

Satellite Assembly and Implementation Details        
Total Hits: 14  |  Today: 0 Author: sreejith ss nair       Rating:  
Read Reviews | Write Review |   Your Rating: 

Microsoft released the .NET Framework and common language runtime model, targeting high productivity in software development. Their goal was to create an enriched user experience with easy-to-use products. Satellite assembly comes into the picture when we develop an application that is localized to a specific culture. Throughout this article, we will explain the use and implementation details of satellite assembly. However, in order to talk about localization, we must know about resource files. ...

How to pass a value from User Control to the Page        
Total Hits: 11  |  Today: 0 Author: SheoNarayan       Rating:  
Read Reviews | Write Review |   Your Rating: 

In the process of developing an application, there are situations when you need to pass a particular value from user control to its calling page. This article describes solution to that type of problem in an easy to follow steps. In this article, I am going to show you how to get a particular value entered by the user from user control to the calling page. In order to do that I am going to create a user control (.ascx) and a page (.aspx) page like shown in the picture below....

Fast, Scalable, and Secure Session State Management for Your Web Applications        
Total Hits: 16  |  Today: 0 Author: Michael Volodarsky       Rating:  
Read Reviews | Write Review |   Your Rating: 

Due to the stateless nature of the HTTP protocol, Web applications have always shouldered the burden of user state management. Fortunately, ASP.NET provides a number of ways to maintain user state, the most powerful of which is session state. This feature provides a convenient programmatic interface for associating arbitrary application state with a user session, and takes care of back-end state storage and client session management for the application. This article takes an in-depth look at des...



DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net
Position Login