Hi
I'm having trouble to access a Parent's property in User Control. I don't know how to access the parent. I saw the example below and tried it:
CType(Me.Page, Search).Prop = VALUE
and the Parent page is called Search.aspx
Partial Class Search
But then I get en error Type 'Search' is not defined.
I have also tried:
Dim p as Page=Me.Parent.Page
p.Prop 'doesn't work
But I can't access the Property in this way either
Please help
Fia