从一个用户控件重定向到另一个用户控件

时间:2016-01-29 07:49:03

标签: c# asp.net user-controls response.redirect server.transfer

我在aspx页面中有一个usercontrol.ascx。在我的用户控件中,我有一个按钮单击事件,我需要从此按钮单击打开另一个用户控件。请给我一些如何实现这一目标的建议。

感谢。

1 个答案:

答案 0 :(得分:0)

您可以使用Visible属性。让我们用按钮ucControl1和另一个ucControl2来调用用户控件。

// code-behind of ucControl1
protected void Page_Load(object sender, EventArgs e)
{
  if(!IsPostBack)
    ucControl2.Visible = false;
}

protected void btn_Click(object sender, EventArgs e)
{
    ucControl2.Visible = true;
}