Example #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            System.Diagnostics.Stopwatch sw = new System.Diagnostics.Stopwatch();

            sw.Start();

            bool thread_mode = !string.IsNullOrEmpty(this.Request["id"]);

            if (thread_mode)
            {
                Response.Write(ThreadView.GenerateThreadPage(Convert.ToInt32(this.Request["id"])));
            }
            else
            {
                Response.Write(IndexView.GenerateIndexPage(this.Context, false));
            }

            sw.Stop();

            Response.Write(string.Format("<!-- Generated in {0} sec -->", sw.Elapsed.TotalSeconds));
        }