Hi there
I have the following page directive in my .aspx file:
<%@ Page Title="Meet the Team" Language="C#" MasterPageFile="~/MasterPageChild.master" %>
I'm using nested Master Pages.
What I'd like to do is have a H1 header on the page which outputs the value of "Title" but I'm not sure how to do this.
Something like this...
<h1><%=Page Title%></h1>
Any ideas?
Go to the complete details ...