FineUI/FineUI_v6/FineUI.Examples/message/confirm_buttons.aspx.cs

34 lines
823 B
C#
Raw Permalink Normal View History

2017-09-05 11:30:31 +08:00
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 confirm_buttons : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// 页面第一次加载
}
else
{
string eventArg = GetRequestEventArgument();
if (eventArg == "ConfirmOK")
{
ShowNotify("你点击了[直接退出]按钮!");
}
else
{
ShowNotify("你点击了[不退出]按钮!");
}
}
}
}
}