2010-10-30 58 views
1

我正在使用ASP.NET主頁。我在主頁面有3個表格作爲列。第一個表格加載第二個表格,其中包含我的「ContentPlaceHolder」,然後是表格3.使用ASP.NET MasterPages時按正確順序加載表

如何或必須先加載表格1然後加載表格3,最後加載包含「ContentPlaceHolder」的表格2?

回答

0

嘗試以下塞納里奧:

<Style> 
#left 
{ 
    float:left; 
    width:150px; 
    background-color:Black; 
} 
#right 
{ 
    float:right; 
    width:150px; 
    background-color:Yellow; 
} 
#center 
{ 
    margin-left:auto; 
    margin-right:auto; 
} 
</Style> 
<div id="left"> 
    Left Column 
    </div> 
    <div id="right"> 
    right Column 
    </div> 
    <div id="center"> 
    Content 
    </div>