Dec 21, 2005 #1 PIAS Programmer Joined Nov 2, 2005 Messages 38 Location SI Can someone tell me how can i controle labels, buttons property that lies on master page, from detail page? For instace i want to controle Button's propertyes.
Can someone tell me how can i controle labels, buttons property that lies on master page, from detail page? For instace i want to controle Button's propertyes.
Dec 21, 2005 #2 misterstick Programmer Joined Apr 7, 2000 Messages 633 Location GB first question: windows or web? mr s. < Upvote 0 Downvote
Dec 21, 2005 Thread starter #3 PIAS Programmer Joined Nov 2, 2005 Messages 38 Location SI sory i need it for web and i figure it out how to get to the properties; http://msdn2.microsoft.com/en-us/library/c8y19k6h.aspx Button mpButton = (Button) Master.FindControl("masterPageButton"); myButton.Text = "my text"; That works, but now it's another problem, how to call and execute some procedure from code behind from detail page? Upvote 0 Downvote
sory i need it for web and i figure it out how to get to the properties; http://msdn2.microsoft.com/en-us/library/c8y19k6h.aspx Button mpButton = (Button) Master.FindControl("masterPageButton"); myButton.Text = "my text"; That works, but now it's another problem, how to call and execute some procedure from code behind from detail page?