使用for循环赋值文本框ID
本文关键字:ID 文本 赋值 for 循环 使用 | 更新日期: 2023-09-27 18:06:53
我是一个新手,我一直在试图弄清楚我们如何在ASP中创建asp:TextBox
标签分配ID。. NET使用c#.
例子:
我需要创建一个线程,可以有多个文本框。
当用户单击按钮时,必须生成一个ID
(例如txt01
)的文本框。第二次点击时,生成文本框的ID
必须为txt02
,依此类推。
提前感谢。
记住最后一个ID在一些变量中,例如int lastID
,然后在按钮的onClick方法中创建新的文本框时分配其ID="txt"+lastID;
。
您必须在页面回发期间持久化lastd,您可以将其存储在ViewState
中。
把placeholder
放到你的aspx页面:例如:<asp:PlaceHolder runat="server" ID="pholder" />
和后面的代码:
TextBox txtMyText = new TextBox();
tb1.ID = YourDynamicId;
pholder.Controls.Add(txtMyText);
你可以保存当前的id在ViewState和获得相同的id和分配增量id到你的动态文本框。
Try This:
int i = 1;
if (ViewState["i"] == null)
{
ViewState["i"] = i;
}
else
i = (int)ViewState["i"];
PlaceHolder1.Controls.Clear();
for (int j = 1; j <= i; j++)
{
TextBox TextBox = new TextBox();
TextBox.ID = "TextBox" + j.ToString();
PlaceHolder1.Controls.Add(TextBox);
}
ViewState["i"] = i + 1;
添加到你的。aspx页面
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
我想这就是你要找的-
你会注意到我已经使用了Page_Init
,因为如果你在Page_Load
中创建/添加控件,那么FindControl
将在PostBack
中返回null。此外,您在动态添加的控件中输入的任何数据都不会在回发期间持续存在。
但是Page_Init
在ViewState
或PostBack
数据加载之前被调用。因此,您不能使用ViewState
或任何其他控件来保持控件计数。所以我使用Session
来保持计数。
试一试,让我知道你的想法。
ASPX页面<form id="form1" runat="server">
<asp:PlaceHolder ID="PlaceHolder1" runat="server"></asp:PlaceHolder>
<asp:Button ID="btnCreate" runat="server" Text="Create" OnClick="btnCreate_Click" />
<asp:Button ID="btnRead" runat="server" Text="Read" OnClick="btnRead_Click" />
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</form>
背后的代码protected int NumberOfControls
{
get { return Convert.ToInt32(Session["noCon"]); }
set { Session["noCon"] = value.ToString(); }
}
private void Page_Init(object sender, System.EventArgs e)
{
if (!Page.IsPostBack)
//Initiate the counter of dynamically added controls
this.NumberOfControls = 0;
else
//Controls must be repeatedly be created on postback
this.createControls();
}
private void Page_Load(object sender, System.EventArgs e)
{
}
protected void btnCreate_Click(object sender, EventArgs e)
{
TextBox tbx = new TextBox();
tbx.ID = "txtData"+NumberOfControls;
NumberOfControls++;
PlaceHolder1.Controls.Add(tbx);
}
protected void btnRead_Click(object sender, EventArgs e)
{
int count = this.NumberOfControls;
for (int i = 0; i < count; i++)
{
TextBox tx = (TextBox)PlaceHolder1.FindControl("txtData" + i.ToString());
//Add the Controls to the container of your choice
Label1.Text += tx.Text + ",";
}
}
private void createControls()
{
int count = this.NumberOfControls;
for (int i = 0; i < count; i++)
{
TextBox tx = new TextBox();
tx.ID = "txtData" + i.ToString();
//Add the Controls to the container of your choice
PlaceHolder1.Controls.Add(tx);
}
}
将id存储在ViewState
中,就像这样首先初始化一个类似于下面的count变量。在你的class
中写这个
protected int replyCount //declare the variable
{
get { return (int)ViewState["replyCount"]; }
set { ViewState["replyCount"] = value; }
}
在你的页面加载写这个初始化replyCount,如果它不是一个回发;
protected void Page_Load(object sender, EventArgs e)
{
if(!page.IsPostBack)
{
replyCount = 0; //initialise the variable
}
}
然后创建动态文本框
protected void Button_Click(Object sender, EventArgs e)
{
TextBox tb = new TextBox();
tb.id = "tb" + replycount; //use the variable
replycount++; // and after using increment it.
form.controls.add(tb); // assuming your form name is "form"
}