Lajos Arpad
Lajos Arpad

Reputation: 77030

Accessing ASP Master Page Properties

I have an ASP.net page which uses a master page. The master page has a public property. Does anybody know how can I access the given property from a content page that uses the master page?

Upvotes: 0

Views: 676

Answers (1)

Etch
Etch

Reputation: 3054

Look into Strongly Typing your Master Page link

Check out the <%@ MasterType virtualPath="~/MasterPage.master"%> tag.

This enables you to directly have access to the public properties/methods.

Upvotes: 2

Related Questions