动态添加控件TextBox2

本文介绍如何在ASP.NET中动态创建TextBox控件,并结合Button点击事件进行交互操作。通过在服务器端代码中实例化TextBox对象并将其添加到页面布局,实现网页表单的动态扩展,提高用户体验。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    
<title>无标题页</title>
</head>
<body>
    
<form id="form1" runat="server">
        
<div>
            
<asp:Button ID="Button1" Style="z-index: 101; left: 64px; position: absolute; top: 184px"
                runat
="server" Text="增加一个TextBox" OnClick="Button1_Click"></asp:Button>
            
<asp:Button ID="Button2" Style="z-index: 102; left: 248px; position: absolute; top: 184px"
                runat
="server" Text="提取全部TextBox的值" Width="200px" OnClick="Button2_Click"></asp:Button>
            
<asp:TextBox ID="txt" Style="z-index: 103; left: 472px; position: absolute; top: 184px"
                runat
="server" ReadOnly="True"></asp:TextBox>
        
</div>
    
</form>
</body>
</html>

 

 

 

 

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class Default2 : System.Web.UI.Page
{
    
protected void Page_Load(object sender, EventArgs e)
    
{
        
// 在此处放置用户代码以初始化页面
        if (Page.IsPostBack)
        
{
            
for (int i = 0; i < this.TextBoxsList.Count; i++)
            
{
                
string txtID = this.TextBoxsList[i].ToString();
                TextBox tmp 
= new TextBox();
                tmp.ID 
= txtID;
                Page.Form.Controls.Add(tmp);
                tmp.Text 
= Request.Form[txtID].ToString();
            }

        }


    }


    
private ArrayList TextBoxsList
    
{
        
get
        
{
            
if (ViewState["myTextBoxsList"== null)
                
return new ArrayList();
            
else
                
return ViewState["myTextBoxsList"as ArrayList;
        }

        
set
        
{
            ViewState[
"myTextBoxsList"= value;
        }

    }


    
private TextBox[][] MyTextBoxs = new TextBox[][] new TextBox[] { }new TextBox[] { }new TextBox[] { } };

    
protected void Button2_Click(object sender, EventArgs e)
    
{
        
foreach (Control ctl in Page.Form.Controls)
        
{
            
if (ctl.GetType().Name == "TextBox")
            
{
                
if (ctl.ID != "txt")
                
{
                    Response.Write(((TextBox)ctl).Text);
                }

            }

        }

    }

    
protected void Button1_Click(object sender, EventArgs e)
    
{
        
        TextBox tmp 
= new TextBox();
        tmp.ID 
= "TextBox" + this.TextBoxsList.Count.ToString();
        
//Page.Controls[1].Controls.Add(tmp);
        Page.Form.Controls.Add(tmp);

        ArrayList array 
= this.TextBoxsList;
        array.Add(tmp.ID);
        
this.TextBoxsList = array;
    }

}

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值