动态添加控件TextBox2

翻译|其它|编辑:郝浩|2007-09-25 11:06:34.000|阅读 910 次

概述:

# 界面/图表报表/文档/IDE等千款热门软控件火热销售中 >>

<%...@ 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;
    }
}


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@evget.com

文章转载自:csdn

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP