我有一个用于显示操作消息的用户控件。它在用户控件的页面加载时隐藏,因此一旦出现警告,它就会消失。但在某些情况下,当页面加载时,我希望用户控件可见,但不是因为隐藏在用户控件的页面加载中。我该如何管理?
用户控制
protected void Page_Load(object sender, EventArgs e)
{
this.Visible = false;
}
public void SetMessage(string title, string desc)
{
this.Visible = true;
Title = title;
Description = desc;
}
父页面
protected void Page_Load(object sender, System.EventArgs e)
{
msgDialogue.SetMessage(a);
}