/ Published in: C#
Access a Method in a Master Page with Code-Behind
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
ClassName MasterPage = (ClassName)Page.Master; MasterPage.MasterMethod(); ClassName ParentMasterPage = (ClassName)Page.Master.Master; ParentMasterPage.ParentMasterMethod();
URL: http://www.braintrove.com/id/17