Hi All,
I am writing an ASP.Net application. I am making use of master page in it. I have several child pages with me, which consist of some java script functions;
Let's say;
function ChildPageFunction()
{
//Do something;
}
And master page java script function as;
function MasterPagefunction()
{
//Need to call ChildPagefunction(); here
}
Now is it possible to call ChildPageFunction() from MasterPageFunction() ?
Please help me if anyone knows how to do this.
Thanks in advance.