音楽のジャンルごとに形成された配列リストがあります。たとえば、カントリー ミュージックを表示します。
public class CountryItemList
{
ArrayList CountryItems = new ArrayList();
protected void CountryBuy1_Click(object sender, ImageClickEventArgs e)
{
CountryItems.Add("Johnny Cash - I Walk The Line - $9");
}
protected void CountryBuy2_Click(object sender, ImageClickEventArgs e)
{
CountryItems.Add("Carrie Underwood - Blown Away - $9");
}
protected void CountryBuy3_Click(object sender, ImageClickEventArgs e)
{
CountryItems.Add("Keith Urban - The Story So Far - $9");
}
protected void CountryBuy5_Click(object sender, ImageClickEventArgs e)
{
CountryItems.Add("Taylor Swift - Red - $11");
}
protected void CountryBuy6_Click(object sender, ImageClickEventArgs e)
{
CountryItems.Add("Willie Nelson - Legend - $9");
}
}
}
クリックされた購入ボタンごとに、選択されたアルバムが配列リストに追加されます。それ以降、配列リストをセッションに取り込み、「ショッピング カート ページ」のリスト ボックスに移動したいと考えています。配列リストを取得して次のページに持ち越すためのセッションにするのに問題があります