码迷,mamicode.com
首页 > Web开发 > 详细

ASP.NET动态加载用户控件的方法

时间:2014-07-23 18:03:25      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   re   c   

方法是使用LoadControl方法,根据用户控件的相对路径,动态生成用户控件对象

用户控件

public class UserControlA :UserControl
{
    public UserControlA(string name)
    {
        //TODO
    }
}

需要动态生成控件的地方

string ucPath = "../UserControls/UserControlA.ascx";
UserControlA ca = Page.LoadControl(ucPath) as UserControlA;

如果构造函数需要参数的话,则加到路径后面即可。如下

string ucPath = "../UserControls/UserControlA.ascx";
string name = "RI";
UserControlA ca = Page.LoadControl(ucPath,name) as UserControlA;

ASP.NET动态加载用户控件的方法,布布扣,bubuko.com

ASP.NET动态加载用户控件的方法

标签:style   blog   color   使用   re   c   

原文地址:http://www.cnblogs.com/TiestoRay/p/3863612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!