C
Chris
In C# I can do:
((Page)this.Parent).Title = "Title"
Why doesn't this work in VB:
DirectCast(me.Parent, Page).Title = "Title"
The Title var doesn't show up in VB.
Thanks.
Chris
((Page)this.Parent).Title = "Title"
Why doesn't this work in VB:
DirectCast(me.Parent, Page).Title = "Title"
The Title var doesn't show up in VB.
Thanks.
Chris