1

如果用户多次单击按钮,我想多次显示文本。例如,如果我第四次单击按钮,我希望出现四个文本。但是,存在一个问题,阻止它多次出现。

如果用户按三下按钮,我希望它看起来像这样:

Hello world
Hello world
Hello world

但它向我展示了这一点:

Hello world

有没有人可以帮我解决这个问题......

这是源代码:

Webform1.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs"  Inherits="addlabels.WebForm1" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Panel ID="Panel1" runat="server"></asp:Panel>
        <asp:Button ID="add" runat="server" Text="Add more" OnClick="add_click"/>

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

WebForm1.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Diagnostics;
using System.Text;

namespace addlabels
{
    public partial class WebForm1 : System.Web.UI.Page
    {

        int pressNumberOfTimes;

        protected void Page_Load(object sender, EventArgs e)
        {

        }


        protected void add_click(object sender, EventArgs e)
        {
            // Add the panel
            pressNumberOfTimes++;

            Label lbl_homeCarouselAdd = new Label();

            // Set the label's Text and ID properties.
            lbl_homeCarouselAdd.ID = "lbl_homeCarouselAdd" + pressNumberOfTimes;

            StringBuilder strDiv = new StringBuilder();
            strDiv.Append(string.Format(@"<p class='style'>Hello world</p>"));

            lbl_homeCarouselAdd.Text = strDiv.ToString();


            Panel1.Controls.Add(lbl_homeCarouselAdd);
        }
    }
}
4

2 回答 2

2

解决方案 1: 您只是用旧标签替换新标签,而不是添加到现有标签,这就是为什么即使您多次单击按钮也无法看到多个标签的原因。

替换这个:

lbl_homeCarouselAdd.Text = strDiv.ToString();

有以下内容:

lbl_homeCarouselAdd.Text += strDiv.ToString();

解决方案2:

您不需要每次都创建标签,因此将标签声明移到函数之外。

解决方案3:

当您每次将页面回发到您的服务器时,所有动态创建的控件都将被删除(在您的情况下,您的标签将被删除)。因此,您应该将标签数据保存到某个变量中,以供下次使用。在这里,我使用了 StringBuilder 来保存旧的标签数据。如需更好的方法,请参阅链接动态创建的控件丢失数据

修改后的代码应该如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

using System.Diagnostics;
using System.Text;

namespace addlabels
{
    public partial class WebForm1 : System.Web.UI.Page
    {

        int pressNumberOfTimes;
        Label lbl_homeCarouselAdd = new Label();
        static StringBuilder strDiv = new StringBuilder();
        protected void Page_Load(object sender, EventArgs e)
        {

        }


        protected void add_click(object sender, EventArgs e)
        {
            // Add the panel
            pressNumberOfTimes++;



            // Set the label's Text and ID properties.
            lbl_homeCarouselAdd.ID = "lbl_homeCarouselAdd" + pressNumberOfTimes;


            strDiv.Append(string.Format(@"<p class='style'>Hello world</p>"));

            lbl_homeCarouselAdd.Text += strDiv.ToString();


            Panel1.Controls.Add(lbl_homeCarouselAdd);
        }
    }
}
于 2013-11-10T08:45:43.577 回答
1

对于您单击按钮的每次回发,字段的值.Text都会被删除,您可以尝试将值保留在静态字符串变量中,有关更多解决方案和详细信息,请参见下面的链接。

这里这里

于 2013-11-10T08:42:21.960 回答