.net弹出提示框和窗口,父页面CSS不会失效

#region 弹出对话框

    ///

    /// 弹出消息对话框

    ///

    /// 页面

    /// 消息内容

    public static void MessageBox(System.Web.UI.Page page, string message)

    {

        page.ClientScript.RegisterStartupScript(page.GetType(), "", "");

    }

    #endregion

 

 

 

#region 弹出位置固定对话框,CSS不会失效,并转向指定页面

    ///

    /// 弹出位置固定对话框,CSS不会失效,并转向指定页面

    ///

    /// 页面

    /// 路径

    /// 宽度

    /// 高度

    /// 距离屏幕上边好多像素

    /// 距离屏幕左边好多像素

    /// 是否有滚动条1表示有,2表示没有

    public static void ShowMessageBox(System.Web.UI.Page page, string url, int width, int height,int top, int left, int scroll)

    {

 

        System.Drawing.Rectangle r = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea;

 

         top = (r.Height - height) / 2;

         left = (r.Width - width) / 2;

 

        string w = width.ToString();

        string h = height.ToString();

 

        string js = "";

 

        page.RegisterStartupScript("", js);

 

    }

    #endregion

你可能感兴趣的:(css,.net,string,scroll,url)