net7:Web使用者控制項ascx的使用及其動態載入

來源:互聯網
上載者:User

標籤:obj   int   搬家   box   ems   return   void   name   lis   

原文發布時間為:2008-07-30 —— 來源於本人的百度文章 [由搬家工具匯入]

Web用户控件test.ascx的源代码:

using System;
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 test : System.Web.UI.UserControl
{
    private string myname;
    private int n;

    public string Myname
    {
        get { return myname; }
        set { myname = value; }
    }
    public int N
    {
        get { return n; }
        set { n = value; }
    }

    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            Label1.Text = myname;
            for (int i = 0; i < n; i++)
            {
                ListBox1.Items.Add(i.ToString());
            }
        }
    }
}

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

这时你可以看见它多了Myname与N这两个属性,你可以右击控件,属性,然后进行更改,还可以动态加载,代码如下:
using System;
using System.Data;
using System.Configuration;
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 _Default : System.Web.UI.Page
{
    private ASP.test_ascx t;//页面上必须有一个test这样的控件时,才能有ASP.test_ascx类型
   
    protected void Page_Load(object sender, EventArgs e)
    {
        Test1.Visible = false;//要动态添加,首先页面上必须有一个这样的控件,所以拉一个,然后不让它显示即可
        t = (ASP.test_ascx)LoadControl("~/test.ascx");
        t.Myname = "dongtai";
        t.N = 3;
        PlaceHolder1.Controls.Add(t);
    }
}

net7:Web使用者控制項ascx的使用及其動態載入

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.