Hi,
Since a user control (ascx) is a class and self-contained, the only way to communicate is to use properties.
If, for instance, you have a Textbox (txtLastName) on your form, write a property to access it.
public string LastName
{
get
{
return txtLastName.Text;
}
set
{...