zoukankan      html  css  js  c++  java
  • net4:Panel动态添加控件及隐藏,Table动态创建表格

    原文发布时间为:2008-07-29 —— 来源于本人的百度文章 [由搬家工具导入]

    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 (!IsPostBack)
            {
                Panel1.Visible = false;
                CheckBox1.Text = "show";
            }
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
            int a = int.Parse(DropDownList1.SelectedValue);
            int b = int.Parse(DropDownList2.SelectedValue);
            for (int i = 0; i < a; i++)
            {
                Label lb = new Label();
                lb.ID = "lb" + i;
                lb.Text = "label" + i + "<br>";
                Panel1.Controls.Add(lb);
            }

            for (int i = 0; i < a; i++)
            {
                Label lb = new Label();
                lb.ID = "lb" + i;
                lb.Text = "label" + i + "<br>";
                PlaceHolder1.Controls.Add(lb);
            }

            for (int i = 0; i < b; i++)
            {
                TextBox tb = new TextBox();
                tb.ID = "tb" + i;
                tb.Text = "textbox" + i;
                Literal br = new Literal();
                br.Text = "<br>";
                Panel1.Controls.Add(br);
                Panel1.Controls.Add(tb);
            }

            Literal lt = new Literal();
            lt.Text = TextBox1.Text;
            Panel1.Controls.Add(lt);

        }
        protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
        {
            if (!CheckBox1.Checked)
            {
                CheckBox1.Text = "show";
                Panel1.Visible = false;
            }
            else
            {
                CheckBox1.Text = "hide";
                Panel1.Visible = true;
            }
        }
        private static string td(HttpContext context)
        {
            return DateTime.Now.ToString();
        }
    }

    -----------------------------------------------------

    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 Default3 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
           
       
            for (int i = 0; i < 4; i++)//4行8列表格
            {
                TableRow tr = new TableRow();
                for (int j = 0; j < 8; j++)
                {
                    TableCell tc = new TableCell();
                    Label lb = new Label();
                    lb.Text = i + "," + j;
                    tc.Controls.Add(lb);
                    tr.Controls.Add(tc);
                }

                Table1.Rows.Add(tr);
            }
          
        }
        }

  • 相关阅读:
    【故障处理】ORA-12162: TNS:net service name is incorrectly specified (转)
    android studio 编程中用到的快捷键
    java时间格式串
    android Error occurred during initialization of VM Could not reserve enough space for object heap Could not create the Java virtual machine.
    linux安装vmware
    x1c 2017 安装mint18的坑——grub2
    x1c2017 8G版 win linux的取舍纠结记录
    python的try finally (还真不简单)
    kafka+docker+python
    json文件不能有注释
  • 原文地址:https://www.cnblogs.com/handboy/p/7141545.html
Copyright © 2011-2022 走看看