Hi Everyone,
I have a public property name "FirstName" on a Web User Control(UserControl.ascx.cs) file. I need to access this property from User.aspx.cs file. Is there a way of doing this?
I try the below but get an object error:
UserControl control = new UserControl()
{
control.FirstName
}
Go to the complete details ...