用户控件开发,后台动态向Controls里添加了控件,则前台页面不能用<%= %>块,而前台的JS代码的确有需要用到后台的属性,应该怎么办?
1 回答
慕桂英3389331
TA贡献2036条经验 获得超8个赞
什么逻辑前面不能用<%%>??
public UserControl uc;
protected void Page_Load(object sender, EventArgs e)
{
UserControl uc = this.LoadControl(".....") as UserControl;
this.uc=uc;
this.Controls.Add(uc);
}
前面页面不是可以引用uc的所有属性了?
不懂你问的是不是这个,说得不太清楚
- 1 回答
- 0 关注
- 460 浏览
添加回答
举报
0/150
提交
取消