How do I enable ASP.NET Master Pages?
If you have version 10, the PDshop .Net Developer Edition, than you have the ability to use what's known as master pages.
By default, and in previous editions, PDshop uses it's own "template.htm" file system. If you want to use the "template.master" instead, simply add the following the your web.config's appSettings section:
<add key="shopmaster" value="ON" />
NOTE: You can also use more than one master page if you need different layouts for different page types. To do this, simply duplicate and rename the template.master file, and then modify the MasterPageFile="template.master" and VirtualPath="template.master" directives in the desired .aspx files.
By default, and in previous editions, PDshop uses it's own "template.htm" file system. If you want to use the "template.master" instead, simply add the following the your web.config's appSettings section:
<add key="shopmaster" value="ON" />
NOTE: You can also use more than one master page if you need different layouts for different page types. To do this, simply duplicate and rename the template.master file, and then modify the MasterPageFile="template.master" and VirtualPath="template.master" directives in the desired .aspx files.
Other Resources
Related Topics
Search for help...