Multimobile Development: Building Applications for any Smartphone
System.Web.UI.WebControls.CheckBoxList Class
Information   Base Types   Related Resources

Creates a multi selection check box group that can be dynamically created by binding the control to a data source.

  • Namespace: System.Web.UI.WebControls
  • Assembly: System.Web.dll

  • System.Web.UI.WebControls.ListControl
    System.IDisposable
    System.ComponentModel.IComponent
    System.Web.UI.IParserAccessor
    System.Web.UI.IDataBindingsAccessor
    System.Web.UI.IAttributeAccessor
    System.Web.UI.IPostBackDataHandler
    System.Web.UI.INamingContainer
    System.Web.UI.WebControls.IRepeatInfoUser
  • View this type on MSDN
  • Search for this type on MSDN using MSDN's own search engine
  • Google for this type - all Web
  • Google for this type - MSDN only
    Articles (31)Discussions (185)MembersRotor
    Articles

    Page: 12
    ASP.NET 2.0 and Data-Bound Controls: A New Perspective and Some New Practices
    MSDN
    Get an early look at the changes in the ASP.NET 2.0 data-binding model that affect custom controls.
    ASP.NET 2.0: Speed Up Your Site with the Improved View State in ASP.NET 2.0
    MSDN
    View state in ASP.NET 2.0 has lots to offer!
    ASP.NET C# Disable/Enable ListItems
    The Code Project
    This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control.
    ASP.NET C# Disable/Enable ListItems
    The Code Project
    This article demonstrates how it is possible to disable/enable individual ListItems in a ASP.NET CheckBoxList Server Control.
    Building a CheckBoxList Validator Control - Part 2
    DotNetJunkies
    As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. But last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side validation, but how to create a CheckBoxListRequiredFieldValidator control.
    Building a CheckBoxList Validator Control - Part 2
    DotNetJunkies
    As promised, this week we will be going over how to add client-side JavaScript to a custom validator control. <b>But</b> last week I was asked a very interesting question. What validator control should I use to validate that a CheckBox was checked within a CheckBoxList? The anwser was simple, NONE. None of the validator controls in the .NET valiator control suite does this type of validation. So, in this article not only are we going to discuss how to add JavaScript validation control for client-side valida
    CheckBoxList Required Validator
    GotDotNet
    This code is based on samples from Donny Mack of dotnetjunkies(http://www.dotnetjunkies.com/Tutorial/ECCCD6A6-B312-41CB-87A1-10BB5D641D20.dcik) and Patoooey of GotDotNet(http://www.gotdotnet.com/Community/UserSamples/Details.aspx?SampleGuid=20ed7bce-1454-4420-bcec-35a2b2425fa3) Many thanks and kudos to you both! I added the ability to recursively find all checkboxlist child controls on the page, like those inside panels, etc.
    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!
    CodeSnip: XML Form Generator, Part 1: Generating an XML Form
    http://aspalliance.com/
    One of the most frequent tasks that web developers receive is that of creating a form to collect user input. One solution is to use an ASP.NET web page to create an XML file that will be used as the basis for a Web form. The three part article, XML Form Generator, will demonstrate how to easily create an XML form that will save user input as an XML file.
    Creating a Validation Control for CheckBoxLists
    4Guys from Rolla
    One of the most useful and time-saving features of ASP.NET, when compared to classic ASP, are ASP.NET'svalidation controls. Validation controls are a set of server-side Web controls that developers can addto their ASP.NET Web pages to validate other Web controls. For example, the RequiredFieldValidatorvalidation control can be placed on an ASP.NET Web page and set to validate a TextBox control. Bysimply adding this control, the developer can then quickly determine whether or not the user hasentered a meaningful entry into the TextBox Web control by simply checking the Page.IsValid property.
    Databinding with XML
    ASP Alliance
    With XML becoming a prominent data source in ASP.NET and with more and more people using it, it only makes sense to be able to use it for databinding. This article is going to show you how to use an XML file to bind to several different controls.
    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
    DataGrid Foreign Event Handling
    DotNetJunkies
    DataGrids seem to be very popular among all ASP.NET developers these days. I've seen whole series of articles and a lot powerful custom controls released for it. I personally think they are great as long as you manage your ViewState size and don't try to think too much outside the box, or grid in this case. Anyhow, one thing that has bothered me is that it isn't easy to wire up events like, OnSelectedItemIndexChange, in template columns containing controls like the RadioButtonList or DropDownList.
    DataList vs. DataGrid in ASP.NET
    MSDN
    This month I want to look at two of the more specialized controls that come with the ASP.NET Framework: the DataList and the DataGrid. Both of these controls are full-featured data-managing tools. In addition to providing a simplified UI programming model for displaying data, ASP.NET includes facilities for binding data sources to these controls so you don't have to write all the code necessary to fish around a database and present your content. This month I'll compare and contrast the DataGrid and DataList controls, starting with DataGrid.
    Declarative ASP.NET globalization
    The Code Project
    An article on how to implement globalization support for ASP.NET pages through attributes and reflection
    Enable ReadOnly Mode for your WebForms!
    The Code Project
    this article will show you, how to implement a readonly mode for webforms
    Generate dynamic asp.net page by using XML and XSLT
    The Code Project
    Generates dynamic forms by transforming xml into xsl file
    Generate dynamic ASP.NET pages by using XML and XSLT
    The Code Project
    Generates dynamic forms by transforming XML into XSL file.
    INFO: Roadmap for Web Forms Data Binding
    http://www.kbalertz.com/
    (313481) - This article provides a roadmap to learn and master data binding using ASP.NET Web Forms. To assist you with learning a Microsoft product or technology, roadmap articles provide links to useful information, including online documentation, Microsoft...
    Introduction to ASP.NET and Web Forms
    MSDN
    This article explains how Web forms are fundamental to Microsoft ASP.NET, shows how to build a Web form, and discusses the controls essential for building a Web form.
    ListControl SelectedItem Validator
    The Code Project
    As you all know the ASP.NET RequiredFieldValidator control checks that the validated control to see if it contains a value. If it doesn't it displays an error message. The problem is that RequiredFieldValidator does not work for ListControl derived controls.
    On-the-Fly Non-Postback .NET Server Validation
    DotNetJunkies
    In this article Dimitrios will demonstrate an alternative method that provides on-the-fly JavaScript server-side validation. This client/server-side validation utilizes Iframes/Layers and a little JavaScript that by the way is compatible with both the latest IE and Netscape browsers, and with full .NET data access on the server side.
    Retrieving Selected Items from the CheckBoxList control
    DotNetJunkies
    This ASP.NET how to illustrates how to get all the checked items in a ASP.NET CheckBoxList Control.
    Revisiting the Use of ADO in .NET Applications
    MSDN
    In a previous installment of this column, I talked about the tools and the techniques available within the .NET Framework to import ADO code in .NET applications. In that article, I ended up creating DataTable-derived classes based on an ADO Recordset schema and contents. Starting with Beta 2, using such a handcrafted class is no longer needed to import a recordset in a .NET application. The data adapter class now natively provides the ability to import the information held in ADO recordsets into .NET data structures.
    Ad
    BootFX
    Reliable and powerful .NET application framework.
    iOS, Android and Windows Phone Development Training and Consultancy
    Hosted by RackSRV Communications
     
    Multimobile Development: Building Applications for any Smartphone
    Copyright © AMX Software Ltd 2008-2010. Portions copyright © Matthew Baxter-Reynolds 2001-2010. All rights reserved.
    Contact Us - Terms of Use - Privacy Policy - 4.0.30129.1734