Hello,
I am programatically creating instance of usercontrol as shown below
Dim uc As Control
uc = Me.LoadControl("~/Controls/DigitalSign.ascx")
Me.Controls.Add(uc)
I have two public properties in my usercontorl like clerkName and RespName. How can I set those values in the above code. Intellisense is not showing ClerkName and respName Properties.