ASP.NET-在圖片插入文字(asp.net write text on the image)
這應該算是很冷門的需求,剛好有個機台layout的圖片要轉成網頁,又要在裡面塞值。   用前端刻不知道要花多少時間,只好先這樣擋一下。      首先寫個CSS    body{     }   .divForText   {       position: absolute;       z-index: inherit;       top: 110px;       left: 296px;       width: 83px;       height: 28px;   }      在aspx頁面引用CSS並在div套用   <link href="css/StyleSheet.css" rel="stylesheet" />   <div class="divForText">   <asp:Label ID="lbl" runat="server" Text="test" Font-Size="XX-Large"></asp:Label>   </div>     之後在可以在前端設計頁面,用滑鼠拉到圖片中想要的位置。