21 lines
415 B
C#
21 lines
415 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace 報到系統.Forms
|
|
{
|
|
public partial class MessageAccountManage : PageBase
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
// 初始化頁面
|
|
}
|
|
}
|
|
}
|
|
}
|