FineUI/FineUI_v6/FineUI.Examples/message/alert_download_hideiframe_window.aspx.cs
三生石上 62ef818ff0 v6.0.3
2017-09-05 11:30:31 +08:00

28 lines
771 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.message
{
public partial class alert_download_hideiframe_window : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
}
protected void btnOperation_Click(object sender, EventArgs e)
{
// 不要在这里调用F.confirm因为当前页面要被关闭因此F.confirm的回调函数可能不能正确执行
PageContext.RegisterStartupScript(ActiveWindow.GetHideReference() + "parent.showConfirm();");
}
}
}