0
我試圖向Web標籤控件添加標題。這裏是我試圖在標籤上使用標題的代碼:試圖將標題屬性添加到要在webpartcontrol中使用的標籤
<asp:WebPartZone ID="WebPartZone1" runat="server"
HeaderText="Welcome to my web page!"
LayoutOrientation="horizontal" Width="160px">
<ZoneTemplate>
<asp:Label ID="Label1" runat="server" Text="Label"
**Title**="Welcome to my web page!">
Welcome to the page!
</asp:Label>
</ZoneTemplate>
任何幫助將不勝感激。
湯姆馬加羅
嘿bechbd,我創建了一個派生自System.Web.UI.Controls.Label的類並添加了一個title屬性。現在我試圖將它添加到webpartcontrol的控件集合中,但是我收到一個錯誤消息,說webpartcontrols不接受子控件。下面是這個類和aspx頁面加載事件的代碼: –
那麼你究竟想用Title來做什麼?這應該是一個標籤在webpartzone的頂部,你可以改變文本? – bechbd