Esempio n. 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!(Convert.ToInt32(Session["userid"]) > 0))
            {
                Response.Redirect("../Pages/Registration.aspx");
            }
            if (IsPostBack)
            {
                return;
            }

            reply_pages = 1;
            NReplies    = new List <ForumReply>();
            int threadid = Convert.ToInt32(Request.QueryString["threadid"]);

            section  = Request.QueryString["section"];
            category = Request.QueryString["category"];
            reply    = Request.QueryString["reply"];
            thr      = new ForumThread();
            thr.GetThread(threadid);
            NReplies = thr.GetNReplies(Convert.ToInt32(reply), 10);
        }