首页 > 学院 > 开发设计 > 正文

如何在webform.aspx.cs中控制用户控件的属性

2019-11-18 16:49:14
字体:
来源:转载
供稿:网友

1.导入用户控件的命名空间
    也就是导入usercontrol.ascx.cs中namespace后面的那部分
2.在webform.aspx.cs的page_load()中添加
        PRotected (usercontrol_TagName) (usercontrol_id);
3.在webform.aspx.cs中注册usercontrol的事件
    this.(usercontrol_id).(event) += new (event)Handler((usercontrol_id)_(event));

之后就可以在webform.aspx.cs中使用用户控件的属性和方法了.
http://www.VEVb.com/suntears/archive/2006/12/11/588703.html


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表