gpt4 book ai didi

asp.net - 单击按钮时动态添加新文本框

转载 作者:行者123 更新时间:2023-12-03 00:30:17 25 4
gpt4 key购买 nike

我的页面上有文本框“tb1”,我希望用户在需要输入更多数据时能够添加另一个文本框。我有以下代码:

VB:

ViewState("num") = 2            
Dim MyTextBox = New TextBox
MyTextBox.ID = "tb" & ViewState("num")
MyTextBox.Width = 540
MyTextBox.Height = 60
MyTextBox.TextMode = TextBoxMode.MultiLine
AddScript.Controls.Add(MyTextBox)
AddScript.Controls.Add(New LiteralControl("<br>"))
ViewState("num") = ViewState("num") + 1

ASP:

<asp:PlaceHolder id="AddScript" runat="server">
<asp:Label ID="Label2" runat="server" Font-Bold="true"
Text="Scripts: (Drag from right)"></asp:Label><br />
<asp:TextBox ID="tb1" runat="server" Width="90%" Height="60px"
TextMode="MultiLine" Enabled="false"></asp:TextBox>
</asp:PlaceHolder>

我的问题是,我每次只能添加一个文本框,而且页面右侧面板上还有一个搜索按钮,如果单击此按钮,创建的文本框将会消失。任何帮助将不胜感激。

最佳答案

您可以构建自己的 TextBoxCollection CompositeControl,这将使您能够实现所需的功能。

我整理了一个基本示例来说明如何实现它。

控制

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

namespace ASPNetWebApplication.Controls
{
public class TextBoxCollection : CompositeControl
{
private List<string> TextBoxes
{
get
{
if (ViewState["TextBoxes"] == null)
{
ViewState["TextBoxes"] = new List<string>();
}

return (List<string>)ViewState["TextBoxes"];
}
set
{
ViewState["TextBoxes"] = value;
}
}

protected override void CreateChildControls()
{
foreach (string textBox in TextBoxes)
{
Controls.Add(new TextBox() { ID = textBox });
Controls.Add(new Literal() { Text = "<br/>" });
}
}

public TextBox GetTextBox(string id)
{
return (TextBox)Controls.Cast<Control>().Where(t => (t.ID == null ? "" : t.ID.ToLower()) == id.ToLower()).SingleOrDefault();
}

public void AddTextBox(string id)
{
TextBoxes.Add(id);
}
}
}

标记示例

注意:Assembly="ASPNetWebApplication" 更改为程序集的名称。

<%@ Register Assembly="ASPNetWebApplication" Namespace="ASPNetWebApplication.Controls" TagPrefix="ASPNetWebApplication" %>

...

<ASPNetWebApplication:TextBoxCollection ID="TextBoxCollection1" runat="server" />
<br />
<asp:Button ID="AddTextBoxesButton" runat="server" OnClick="AddTextBoxesButton_Click" Text="Add Some Text Boxes" />
<asp:Button ID="GetTextBoxValuesButton" runat="server" OnClick="GetTextBoxValuesButton_Click" Text="Get TextBox Values" Visible="false" />
<br />
<asp:Literal ID="TextBoxEntriesLabel" runat="server"></asp:Literal>

隐藏代码示例

protected void AddTextBoxesButton_Click(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++)
{
TextBoxCollection1.AddTextBox(string.Format("TextBox{0}", i));
}

AddTextBoxesButton.Visible = false;
GetTextBoxValuesButton.Visible = true;
}

protected void GetTextBoxValuesButton_Click(object sender, EventArgs e)
{
TextBoxEntriesLabel.Text = string.Empty;
for (int i = 0; i < 10; i++)
{
string textBoxId = string.Format("TextBox{0}", i);
TextBoxEntriesLabel.Text += string.Format("TextBox: {0}, Value: {1}<br/>", textBoxId, TextBoxCollection1.GetTextBox(textBoxId).Text);
}
}

希望这有帮助。

关于asp.net - 单击按钮时动态添加新文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7676182/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com