Beispiel #1
0
        // *********************************************************************
        //  Next_Click
        //
        /// <summary>
        /// Event raised to move to the next thread
        /// </summary>
        ///
        // ********************************************************************/
        public void Next_Click(object sender, EventArgs e)
        {
            int nextThreadID = Threads.GetNextThreadID(postID);

            HttpContext.Current.Response.Redirect(Globals.UrlShowPost + nextThreadID);
            HttpContext.Current.Response.End();
        }