I have a text box on my aspx page and I need the usercontrol to be able to see or access this value, as I would.
I created a public property on my aspx page
public string txtBoolValue
{
get { return this.txtBool.Text;}
}
How do I call this on my ascx page?
thank
melt
source
share