Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 26th, 2006, 10:29 AM
Authorized User
 
Join Date: Jan 2006
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
Default CheckBoxList Headers

I have created a CheckBoxList that inserts information in columns. The columns are separated by '+ "</TD><TD>" +' . However, what I cannot figure out is if there is a way to add headers to these columns. Below is part of the code for the list


                            int cnt = 0;
                            while ( objReaderUser.Read() == true )
                            {
                                ListItem listEst = new ListItem();

                                listEst.Text = "<TD>" + objReaderUser["est_name"].ToString() + "</TD><TD>" + objReaderUser["est_location"].ToString() + "</TD><TD>" + objReaderUser["state"] + "</TD><TD>" + "</TD><TD>"+ objReaderUser["business_type"] + "</TD><TD>" + objReaderUser["est_capacity"] + "</TD><TD>" + objReaderUser["est_grade"] + "</TD>";
                                listEst.Value = objReaderUser["est_id"].ToString();
                                cblEst.Items.Add( listEst );

                                cnt++;
                            }
                            objReaderUser.Close();

if you know of a way please respond.






Similar Threads
Thread Thread Starter Forum Replies Last Post
CheckboxList and SQLDataSource keithroby ASP.NET 3.5 Basics 5 December 3rd, 2008 03:19 PM
Checkboxlist epkgupta Visual Studio 2005 0 March 11th, 2008 05:31 AM
checkboxlist problems hanoisky ASP.NET 2.0 Basics 1 December 6th, 2006 06:04 PM
CheckBoxList stu9820 ASP.NET 1.0 and 1.1 Basics 10 May 25th, 2006 08:15 PM
CheckBoxList eddiema VS.NET 2002/2003 1 April 9th, 2004 09:49 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.