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.
65 lines
1.6 KiB
65 lines
1.6 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
#region 程式異動記錄
|
|
///程式代號:Waiting
|
|
///程式名稱:當畫面是維修中時需要跳轉到該畫面
|
|
///程式說明:
|
|
///xx.YYYY/MM/DD VER AUTHOR COMMENTS(說明修改的內容)
|
|
///01.2014/10/29 1.0 Alina CREATE
|
|
#endregion
|
|
|
|
namespace OT.Web
|
|
{
|
|
public partial class Waiting : System.Web.UI.Page
|
|
{
|
|
#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)
|
|
{
|
|
//頁面第一次加載
|
|
string strProgramStatus = Server.UrlDecode(Request.QueryString["PageTile"]);
|
|
if (strProgramStatus.Trim() == "W")
|
|
{
|
|
lblShow.Text = "該頁面正在維修中...";
|
|
}
|
|
else
|
|
{
|
|
lblShow.Text = "該頁面已停用!";
|
|
}
|
|
|
|
}
|
|
}
|
|
#endregion
|
|
|
|
#endregion
|
|
}
|
|
}
|