Assuming the UC generates a table, the easiest method I can think of is this:
In the UserControl's ascx do something like this:
In the UserControl's code behind:
public string CellContent
{
get { return ltCellContent.Text; }
set { ltCellContent.Text = value; } }
}
And to use it: