ASP.NET 2: Master Page declaration in web.config?

ha h

New member
If I declare this in the file web.config of FolderA, will I need to specify the MasterPageFile attribute in Page directive of all pages in FolderA???

<system.web>
<pages masterPageFile="~/FolderA/AdminTemplate.master"></pages>
</system.web>
------
Right now, I don't see any effects of declaring the above code, because I still have to write MasterPageFile attribute for every page in that folder. Plz help. >.<
-----------
I am using Visual Studio 2005 SP1.
 
Back
Top