2011-04-26 62 views

回答

2

確保div設置爲runat="server",併爲div賦予一個id屬性。

然後在你的C#代碼

divID.Attributes.Add("height", heightValue) 
1
<div runat="server" id="div1"></div> 

codeBehined:

div1.Style["width"] = image.Width + ""; 
div1.Style["height"] = image.Height + ""; 
相關問題