You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
#region 程式異動記錄
///程式代號:Footer
///程式名稱:系統Footer頁面
///程式說明:
///xx.YYYY/MM/DD VER AUTHOR COMMENTS(說明修改的內容)
///01.2012/07/25 1.0 Ethan CREATE
#endregion
namespace OT.Web
{
public partial class Footer : Ap_Code.BasePage
{
#region 自定義變量區
// 自定義變量區
#endregion
#region 公有方法區
// 公有方法區
#endregion
#region 私有方法區
// 私有方法區
#endregion
#region 頁面事件觸發區
// 頁面事件觸發區
#region Page_Load
/// <summary>
/// 頁面加載事件
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//頁面第一次加載
}
}
#endregion
#endregion
}
}