System.Web.UI.WebControls.DataList Class
Information   Base Types   Related Resources

A data bound list control that displays items using templates.

  • Namespace: System.Web.UI.WebControls
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: System.Web.dll

  • System.Web.UI.WebControls.BaseDataList
  • View this type on MSDN
  • View this type on WinFX 247
    Articles (65)Discussions (896)MembersRotorChanges
    Articles

    Page: 123
    A Grouping and Subtotaling Repeater for ASP.NET
    DotNetJunkies
    A recent project had a user interface requirement where data could be displayed two ways: either in chronological order or grouped by family member. I solved the "not so easy" grouping by family member requirement by modifying the Repeater control, as you'll see in this article.
    A Simple DataGrid Row Tooltip For Beginners.
    The Code Project
    A Simple DataGrid Row Tooltip For Beginners.
    A Templated databound Repeater control with per-row template selection
    The Code Project
    This control allows you to select a template for each different row in your Repeater, based on the content of that row.
    Advanced Data Mapping in .NET
    DotNetJunkies
    In this article, Tin demonstrates 3 automated mechanisms for data mapping: mapping from Database table columns to object properties, mapping from HTML form fields to object properties, mapping from ASP.NET Web controls to object properties.
    An introduction to a post-relational database for .NET : Matisse - Part 6
    The Code Project
    ASP.NET programming with a post-relational database
    Ask the DotNetJunkies: DataList Paging
    DotNetJunkies
    Could you teach me how to use paging to "DataList" web control like "DataGrid",just like [ASP.NET News] or [ASP.NET Tutorials] on your site? I hope you can help me with this question or kindly send source code (news.aspx) to me. Thank you very much!! A Rookie in ASP.NET.
    ASP.NET Data Shaping
    MSDN
    Is it possible to port this model to Web Forms and get automatic synchronization between two DataGrid server controls? This is the question I will try to answer in this month's column.
    ASP.NET Validation Controls Samples For Beginners
    .netBips
    Most of the times while submitting forms we need to validate the user input for certain criteria. In ASP there was no other way but to write our own server or client side validation routines. ASP.NET frees the programmer from performing common validation tasks through the use of special web controls called validation controls. These 10 code samples will show you how to use all of the available validation controls.
    Binding XML to a DataList Control
    XML for ASP.NET
    This example demonstrates how XML data can be loaded into a DataSet and then bound to a DataList server control. The DataList has several ItemTemplates that specify that type of binding that should occur.
    Building a Moderated Discussion Forum in C#
    C#Today
    In this article Juan Martinez tackles one of the most common features on a website: A discussion forum. Forums are a primary tool for building online communities and driving traffic to the website. We will step through the development of a moderated discussion forum from scratch. Analysis, design, implementation and deployment will be covered to furnish a working moderated forum in C#.
    Building an Online Shopping Cart Using C# Part 2
    C#Today
    n this article, Juan Martinez continues his work in building an online shopping cart application. In part one, he discussed the basic framework of the application, now the time has come to increase the features of the shopping cart and have a complete system for online use. These enhancements will demonstrate how easy it is to add new functionality to the framework, by adding a customer rating control for the available items. He will also build an administration console, which will enable us to manage the online store through the web, and will discuss the security issues on the web, and how to implement SSL in you server for encryption. Finally he will briefly discuss the various payment services available on the web.
    Building Basic Mobile Web Forms
    DotNetJunkies
    ASP.NET enables developers to do a lot of things with ease. Bind data to HTML Table output (DataGrid, DataList, Repeater), maintain state, and build Mobile Web Forms. Mobile Web Forms are specialized versions of ASP.NET Web Forms, using a selective set of Mobile Controls.
    Building Templated Custom ASP.NET Server Controls
    MSDN
    Learn how to create ASP.NET Server controls that enable users to customize the look and feel.
    Classic ASP Framework (CLASP) v1.8. Make your Classic ASP code work like in ASP.NET!
    GotDotNet
    Developing in Classic ASP using the same technics as in ASP.NET. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET!. It includes all your favorite controls (TextBoxes, RadioLists,CheckBoxes,DropDowns,DataGrids,DataList,Repeaters, RichTextBox, LinkButtons,ImageButtons,Pagers,ETC ETC ETC!)... it supports client or server side viewstate and much more... Download the code here or always the latest version at: http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=69b08b15-d456-4cf9-8b12-d4642ef0c22e
    Classic ASP Framework - Make your Classic ASP code work like in ASP.NET
    The Code Project
    Developing in Classic ASP using the same technics as in ASP.NET?. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET!
    Classic ASP Framework 2.0 (CLASP)
    GotDotNet
    Work in Classic ASP using the same technics found in ASP.NET. If you have to work in Classic ASP, why don't do it the right way?. By using a similar framework not only your code will be more organized and efficient, but it will take you a fraction of the time to port to ASP.NET!. It includes all your favorite controls (TextBoxes, RadioLists,CheckBoxes,DropDowns,DataGrids,DataList,Repeaters, RichTextBox, LinkButtons,ImageButtons,Pagers,Menu, TreeView,Panels, Graph, and much more!) Download the code here or always the latest version at: http://www.gotdotnet.com/Community/Workspaces/Workspace.aspx?id=69b08b15-d456-4cf9-8b12-d4642ef0c22e Samples site at: http://clasp.csharpjunkie.com/buttons.asp
    Coping with a New Beta - Data Server Control Templates and Editing
    DotNetJunkies
    The .NET Framework Beta 2 has many changes that will break applications written in Beta 1. Among these changes is the templates used in Data Server Controls, such as the DataGrid and DataList. These are simply syntax changes in how templates are used, not programmatic breaks. In this tutorial you will learn how to use Data Server Control templates. Heck, since it’s a Friday I’ll also show you how to do DataGrid editing at the same time. The downloadable sample code for this article contains files in both Vi
    Coping with a New Beta - DataSetCommand to DataAdapter
    DotNetJunkies
    In ASP.NET Beta 1 we all got very used to using the DataSetCommand (SQLDataSetCommand or ADODataSetCommand). With the release of Beta 2 we have a little relearning to do. In this tutorial you will learn how to use the DataAdapter, the Beta 2 equivalent of the DataSetCommand. The downloadable sample code is in both C# and Visual Basic.NET
    Creating Custom ASP.NET Controls in VS.NET
    Susan Warren
    This document describes the techniques users can employ to author and consume custom Web controls for ASP.NET Web applications using Visual Studio.NET. Creating custom ASP.NET server controls is much like creating custom Windows Forms controls. Support for the shared functionality (custom value editors, designer verbs, etc.) is described in the Programming Guide section of the .NET Frameworks documentation. This document describes the design-time support that is unique to ASP.NET server control authoring.
    Creating DataGrid Templated Columns Dynamically
    .netBips
    Few months back I wrote article on how to create DataGrid programatically. The article explained how to created a DataGrid with bound columns on the fly. Many readers asked whether we can do similar thing with templated columns. This two part article explains just that. There are actually two ways to create DataGrid templated columns dynamically - using LoadTemplate method and implementing ITemplate interface. In Part - I, we will discuss how to use the first method i.e. using LoadTemplate.
    Creating dynamic data structures
    FLWS.com.au
    In the first part of this series - Creating custom collections - I showed how to wrap a .NET collection class to create a new enumerable collection with a custom name. In that article I used an ArrayList as my underlying storage container. Was that a good choice? Should I have used a HashTable? What's the difference anyway? Well, as you are probably aware, there are many differences between a HashTable and an ArrayList, but what you may not already know is that these differences can dictate how the underlying data is stored in memory. In this article I'll explain the different structures that are used to store data in memory and demonstrate why different collection classes require different underlying structures.
    Data Access in ASP.NET 2.0
    MSDN
    Leverage the new ASP.NET 2.0 data access controls to reduce the code you have to write when developing a data-driven Web application.
    Data Form Wizard for ASP.net
    The Code Project
    Data form wizard for ASP.net similar to that of the windows applications
    Databound Schedule control
    The Code Project
    This data control can show scheduled events automatically
    Databound Schedule control
    The Code Project
    This data control can show scheduled events automatically
    Ad
    Need Dot Net Interview Questions?
    Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
    .Net Projects
    Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
    Free .net Help
    Commission ExamGuru, Inc. and his team for your next bespoke software project
    FogBUGZ
    The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
    Awesome Tools
    If you don't know about these, you're missing out... IT Certification Questions
    IT Interview Questions
    Free Oracle 10g Training
    MCSE Boortcamp
    Cisco Study Guides
    Cheap Study Guides
    Exact Questions
    Dot Net Interview Questions
    Oracle OCP
    Cheap Travel
    Designer Perfumes - Wholesale Prices
    Free Programming Tutorials
     
    ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
     Copyright © ExamGuru, Inc. 2001-2006
    Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification