Question : How to change master page of default.aspx in a site template

Hi,
I have a custom site template definition which has a default.aspx. I want to use a different master page instead of the default one. How can this be done??

Answer : How to change master page of default.aspx in a site template

Hi all,
I was able to resolve the issue by entering the value for the property key=ChromeMasterUrl with the URL of my custom master page.
Thanks for all your responses.

Special thanks to Nubian and Pramod. The URL references helped me understand the issue better.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
<Configurations> 
    <Configuration ID="2" Name="BLANKINTERNET" MasterUrl="_catalogs/masterpage/customdefault.master" CustomMasterUrl="_catalogs/masterpage/customdefault.master">
      <WebFeatures>
        <Feature ID="00BFEA71-DE22-43B2-A848-C05709900100" />
        <Feature ID="00BFEA71-E717-4E80-AA17-D0C71B360101" />
        <Feature ID="00BFEA71-52D4-45B3-B544-B1C71B620109" />
        <Feature ID="00BFEA71-A83E-497E-9BA0-7A5C597D0107" />
        <Feature ID="00BFEA71-4EA5-48D4-A4AD-305CF7030140" />
        <Feature ID="22A9EF51-737B-4ff2-9346-694633FE4416">
          <Properties xmlns="http://schemas.microsoft.com/sharepoint/">
            <Property Key="ChromeMasterUrl" Value="~SiteCollection/_catalogs/masterpage/customdefault.master" />
            <Property Key="WelcomePageUrl" Value="Pages/BlankPage.aspx" />
            <Property Key="PagesListUrl" Value="" />
            <Property Key="AvailableWebTemplates" Value="" />
            <Property Key="AvailablePageLayouts" Value="" />
            <Property Key="AlternateCssUrl" Value="" />
            <Property Key="SimplePublishing" Value="false" />
          </Properties>
        </Feature>
      </WebFeatures>
    </Configuration>
</Configurations> 
Random Solutions  
 
programming4us programming4us