private string visibles = string.Empty
/// <summary>
/// 设置Repeater隐藏或显示
/// </summary>
public string Visibles
{
get { return visibles }
set { visibles = value}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
rerComment.Visible=this.visibles
}
}
调用的aspx页面
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack) {
//Comment.ascx控件
Comment1.Visibles=true
}
}
在自定义控件的cs文件中实现提交数据的逻辑之后,要注意,在aspx页面中,使用自定义用户控件,首先要在视图页面中使用<%@Register
%>注册该控件,然后在布局该控件的位置使用标签引用。
展开全部
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)