I'm trying to get ItemCommands from a repeater in my user control to my page that contains a repeater with my UserControl databound in it. I think im close but I don't quite have it right. Here is my some sample code. If anyone has any ideas your help
is appreciated.
MyObject.cs
using System;
using System.Collections.Generic;
using System.Web;
/// <summary>
/// Summary description for MyObject
/// </summary>
public class MyObject
{
private string _Name;
public string Name { get { return _Name; } set { _Name = value; } }
private List<string> _ChildItem;
public List<string> ChildItem { get { return _ChildItem; } set { _ChildItem = value; } }
public MyObject(string ObjectName)
{
Name = ObjectName;
ChildItem = new List<string>();
for (int i = 1; i < 5; i++)
{
ChildItem.Add("Sub ...
Go to the complete details ...