How to manage masterpage?
-
-
My masterpage have as below tag
<body>
<form runat="server" id="mainForm" method="post">
<div class="page">
<div class="header">
<div class="title">
<h1>
This is Header
</h1>I want to change
This is Header
to every pages. How can I do from each page?
you can easily access master page controls via
Master.FindControl
Here is an example [^] of how to do it. By the way you don't need to use <hl>, use instead css styling.Yusuf May I help you?
-
My masterpage have as below tag
<body>
<form runat="server" id="mainForm" method="post">
<div class="page">
<div class="header">
<div class="title">
<h1>
This is Header
</h1>I want to change
This is Header
to every pages. How can I do from each page?
-
you can easily access master page controls via
Master.FindControl
Here is an example [^] of how to do it. By the way you don't need to use <hl>, use instead css styling.Yusuf May I help you?