asp.net:在代码后面的div后追加一个div

时间:2013-10-16 10:11:16

标签: c# asp.net css

我需要在asp.net c#后面的代码中添加一个带有特定css类(或数据标签)的标签后附加div(带内容)。

有人可以帮帮我吗?基本上它应该在jquery中作为“追加”工作。我在网上搜索但找不到任何东西,尤其是“附加”到具有特定CSS类的标签。

谢谢。

1 个答案:

答案 0 :(得分:0)

您可以从后面的代码中添加diva作为html泛型控件

例如我有一个像这样的div

<div id="test" runat="server">Some Content</div>

正如我指定的runat服务器,它将在那里可用,我可以添加这样的内容

HtmlGenericControl div= HtmlGenericControl();
div.TagName = "div"; //specify the tag here
//then specify the attributes
div.Attributes["height"] = "100%";
div.Attributes["width"] = "100%";
div.Attributes["class"] = "someclass";
div.Attributes["id"] = "someid";
test.Controls.Add(div);