Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Changing output format of checkBoxList control

0 views
Skip to first unread message

Andy B

unread,
Apr 24, 2008, 10:25:09 AM4/24/08
to
I have the following checkBoxList in a web page. I set the DataSource in the
code behind (shown below the control) to a Dictionary<string, string>
collection. When I run the page, I get some formatting in the control that I
want to change. For this example, I get the key/value pair of the dictionary
inside of [] ([key, value]). For example:

Page output:

[Words, Just testing this thing...]

I need to make custom formatting with html and stuff. How would I do that?

Control:

<asp:CheckBoxList ID="WordList" runat="server">

</asp:CheckBoxList>

CodeBehind:

public partial class _default : System.Web.UI.Page {

Contract StockContract = new Contract();

protected void Page_Load(object sender, EventArgs e) {

StockContract.Dictionary = new ContractDictionary<string, string>();

StockContract.Dictionary.Add("Words", "Just testing this thing...");

WordList.DataSource = StockContract.Dictionary;

WordList.DataBind();

}

}


0 new messages