Here is what i want to do
I have a page IssueActions.aspx
with a label on it lblComm.
Lets say the value "C.01000" is inside this label.

I have a user control with a drop down box that I need to fill.
The problem is one of the parameters to pass to the stored procedure to fill this combo box is the value inside lblComm.

Two issues I see hear:

1) The label is not inside the user control but is inside IssueActions.aspx

2) Even if I try to use a property the IssueActions.aspx page
never gets its data set while loading this UC. Meaning maybe there isnt enough time to load the user control that it keeps returning nothing.

How do I somehow pass whatever is inside IssueActions.aspx to this User Control?

I wish I could do sometihng like

PARAMETER = IssueActions.lblCommission.Text

but I cant...

Anyone with ideas?

Thanks,

Jon