_main_bottom.aspx.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. /*******************************************************************************
  2. * 利亚方舟- 网站内容管理系统
  3. * Copyright (C) 2012-2013 inethink.com
  4. *
  5. * @author jackyang <69991000@qq.com>
  6. * @website http://cms.inethink.com
  7. * @version 1.3.6.0 (2013-08-14)
  8. *
  9. * This is licensed under the GNU LGPL, version 3.0 or later.
  10. * For details, see: http://www.gnu.org/licenses/gpl-3.0.html
  11. *******************************************************************************/
  12. using System;
  13. using System.Collections.Generic;
  14. using System.Web;
  15. using System.Web.UI;
  16. using System.Web.UI.WebControls;
  17. using iNethinkCMS.Web.UI;
  18. namespace iNethinkCMS.Web.admin
  19. {
  20. public partial class _main_bottom : Admin_BasePage
  21. {
  22. protected void Page_Load(object sender, EventArgs e)
  23. {
  24. CheckUserPower("login");
  25. string vSysVer = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString();
  26. this.sInfo_A.InnerHtml = "<a href=\"http://www.lyfz.net\" target=\"_blank\">利亚方舟</a> V" + vSysVer
  27. + "(" + Command.Command_Configuration.GetVersionsString("VersionsTime") + ")"
  28. + "&nbsp;&nbsp;Powered by <a href=\"http://www.lyfz.net\" target=\"_blank\">lyfz.net</a>";
  29. }
  30. }
  31. }