I'm trying to create a masterpage that can be changed by the content page that is loaded on the master through the C# script.
The problem is changing the CssClass of a Label located on the master through the content script.
I've tried calling it directly by LabelName.CssClass = "NewCssClass"; in the page_load event handler of the content page. I get the error "The name 'LabelName' does not exist in the current context"
Is there a way to do this? am I close?
-Brandan