FineUI/FineUI.Examples/button/button_custom.aspx.cs
三生石上 8e116609c6 v4.2.0
2015-05-19 14:45:47 +08:00

30 lines
632 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples.button
{
public partial class button_custom : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Alert.ShowInTop("点击了普通按钮");
}
protected void Button2_Click(object sender, EventArgs e)
{
Alert.ShowInTop("点击了自定义按钮");
}
}
}