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.

50 lines
1.1 KiB

  1. using System;
  2. #region 程式異動記錄
  3. ///程式代號:NotView
  4. ///程式名稱:沒有檢視畫面的權限
  5. ///程式說明:
  6. ///xx.YYYY/MM/DD VER AUTHOR COMMENTS(說明修改的內容)
  7. ///01.2012/08/22 1.0 Ehtan CREATE
  8. #endregion
  9. namespace OT.Web
  10. {
  11. public partial class NotView : System.Web.UI.Page
  12. {
  13. #region 自定義變量區
  14. // 自定義變量區
  15. #endregion
  16. #region 公有方法區
  17. // 公有方法區
  18. #endregion
  19. #region 私有方法區
  20. // 私有方法區
  21. #endregion
  22. #region 頁面事件觸發區
  23. // 頁面事件觸發區
  24. #region Page_Load
  25. /// <summary>
  26. /// 頁面加載事件
  27. /// </summary>
  28. /// <param name="sender"></param>
  29. /// <param name="e"></param>
  30. protected void Page_Load(object sender, EventArgs e)
  31. {
  32. if (!IsPostBack)
  33. {
  34. //頁面第一次加載
  35. lbFunctionTitle.Text = Server.UrlDecode(Request.QueryString["PageTile"])??" ";
  36. }
  37. }
  38. #endregion
  39. #endregion
  40. }
  41. }