I playing around with this new software Visual Studio Express 2010 using C# and I have the source code files but what I am wanting to do is on this Greeting Card Maker. I would like to have some check boxes so the user can Select a Prefined Message to be displayed on the Greeting Card.
<asp:Checkbox ID = "chklst" runat="server" />
This is the .aspx file, then on my .aspx.cs file I have this
protected void Page_Load(object sender, System.EventArgs e)
{
if (this.IsPostBack == false)
{
//Get the Selected Greeting.
chklst.Items.Add("Happy Birthday");
chklst.Items.Add("Happy Happy Birtyday");
}
I am not sure what else I should do.