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();
}
}