0

我看不到弹出窗口上的按钮。我创建了一个弹出窗口并在该窗口上放置了一个按钮来关闭它,但实际上无法关闭它。当我运行程序时,我看不到按钮。我只能看到没有按钮的弹出窗口。

这是创建按钮和弹出窗口的代码(UcPopUpConfirm.ascx):

<asp:Button ID="Button" 
            runat="server" 
            ClientIDMode="AutoID" 
            OnClick="Button1_Click1" 
            Text="Tamam" 
            CssClass="dx" 
            Font-Bold="True" 
            Font-Size="Large" 
            Width="87px" />

这是按钮单击处理程序中的代码:

public void Button1_Click1(object sender, EventArgs e)
{  
      PopupControlContentControl1.Visible = false;
      Button.Attributes.Add("onclick", "Close.me()");
      return;    
}
4

0 回答 0