0

我正在尝试在运行时在现有的 .aspx 页面中添加一些额外的文本。但没有找到任何合适的方法来做到这一点。

有没有办法在运行时从后面的代码中将新标记附加到 .aspx 页面?

例如:

我在 .aspx 页面中有这个 -

<html>
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">

我想从后面的代码中附加这个-

    <div>
    hghjggjg
    </div>
    </form>
</body>
</html>

谢谢你。

4

3 回答 3

1

动态... ..aspx

<%@ Control Language="C#" AutoEventWireup="true"     CodeBehind="xx.ascx.cs"   Inherits="xx.layouts.xxSublayout" %>
<%@ Register Assembly="System.Web" Namespace="System.Web.UI" TagPrefix="asp" %>
<asp:LiteralControl runat="server" ID="openingTag" />
<asp:PlaceHolder runat="server" id="contentPanel" />
<asp:LiteralControl runat="server" ID="closingTag" />

后面的代码..将带有文本的 div 添加到 PAGE_LOAD 以外的某些方法中...

 var inputWrapper = new HtmlGenericControl("div"){ID = "d1"};
        inputWrapper.Attributes.Add("class", "yourcssclass");
        inputWrapper.InnerText = "hghjggjg";
        contentPanel.Controls.Add(inputWrapper);

坚持标签回发...

            //add div ID to list, add list to session so it can be recreated on the page_INIT, this must be done or btn will NOT exist when "Get vCard" is clicked.
            PostbackIDs.Add(inputWrapper.ID);
            Session["pb"] = PostbackIDs;

在初始化...

//Must recreate controls from session, so label is existing
       if (Session["pb"] != null)
        {
            var pblist = (List<string>)Session["pb"];
            foreach (var id in pblist)
            {                   
                // label
                var inputWrapper= new HtmlGenericControl("div") { ID = id };
                inputWrapper.Attributes.Add("class", "yourcssclass");                    
                contentPanel.Controls.Add(inputWrapper);
            }
        }

由于在页面加载之前触发了 INIT 方法,因此控件的 ID 将就位以向其添加文本。

于 2013-09-05T16:16:52.147 回答
0

HTMLElement在后端创建实例,用数据填充它们并将它们添加到控件/页面。

于 2013-09-05T16:10:47.123 回答
0

您可以在 ASPX 中添加一个Label并在运行时修改该Text属性。

如果你想在运行时添加控件而不是,PlaceHolder是一个很好的研究控件。但请记住,这些动态声明的控件不会通过PostBack.

于 2013-09-05T16:15:47.630 回答