コード例 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     SetPageLoadPart();
     CoreJs.IncludeLanguageCoreJs(this.Page);
     Response.Cache.SetCacheability(HttpCacheability.NoCache);
     Response.Cache.SetExpires(DateTime.Now.AddSeconds(-1));
     Response.Cache.SetNoStore();
     Response.AppendHeader("pragma", "no-cache");
     SageFrame.Application.Application app = new SageFrame.Application.Application();
     lblVersion.Text = string.Format("V {0}", app.FormatShortVersion(app.Version, true));
     AddLanguage();
 }