Accessing parent properties in UserControls from different aspx page – Asp.net
There is a aspx page which makes use of UserControl as follows. Page1.aspx.cs public class Page1 { public string Code {get;set;} .... } In the Page1.aspx a user control called "UsrControl" <@Register TagPrefix="Usr" NameSpace="UsrControl"> I have the following code in…