Hi,
I'm using nested master pages for one of my websites.
In the parent.master, I have a public function defined called Test(), and at the top of child.master, I have the two lines <%@ master Language="C#" MasterPageFile="parent.master" %> and
<%@ MasterType VirtualPath="parent.master" %> ... how do I access the Test() function in the parent.master file from the child.master code behind?
Thanks in advance for any help.