FineUI/FineUI.Examples/test/timer.aspx.cs
2013-11-01 14:13:51 +08:00

22 lines
504 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace FineUI.Examples
{
public partial class timer : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
Label1.Text = "Label1";
rblU_Sex.SelectedValue = "2";
Alert.Show("ss", MessageBoxIcon.Information);
}
}
}
}