0
private void GetGroupListHtml()
{
//...Code omitted
String htmlCode = String.Empty;
foreach (DataRow _DataRow in _DataTable.Rows)
{
htmlCode += @"<div class=""box collapsed-box"">
<div class=""box-header with-border"">
<h3 class=""box-title"">
<asp:Label ID=""groupTitleLabel"" runat=""server"" Text=" +_DataRow["groupName"] + @"""></asp:Label>
</h3>
<div class=""box-tools pull-right"">
<button class=""btn btn-box-tool"" data-widget=""collapse"" data-toggle=""tooltip"" title=""Expand""><i class=""fa fa-plus""></i></button>
</div>
</div>
</div>";
}
}
我想將html代碼添加到div。這樣做有可能嗎?基本上我有一個字符串變量附加的HTML代碼。我想在div標籤之間轉儲此代碼並將新網頁返回給用戶。將html代碼動態添加到div
<div id="groupListDiv" runat="server"></div>
有沒有問題使用div也 – Imad
正確,但我更喜歡使用ASP.NET控件 – Mivaweb
嗨它的工作原理。那麼我該如何爲htmlCode中的每個按鈕編寫單擊事件。 – RStyle