I have a public method in my content page class, I want to call this method from master page class
Thanks
|
|
|||||
|
|
|
You can inherit your page from a base class. Then you can create a virtual method in your base class which will get overridden in your page. You can then call that virtual method from the master page like this -
Here, EDIT: Of course, you'll have to put a null checking before you call the |
||||
|
|
|
if you do not want to use any base page add this to your master page,
then use it callContentFunction("myPublicMethodName", myParam1, myParam2...); |
||||
|
