コード例 #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         //nacitanie comment ID ak je
         string commentId = QueryStringHelper.GetCommentIdFromRequest(Request);
         if (!string.IsNullOrEmpty(commentId))
         {
             hiddenCommentID.Value = commentId;
         }
         if (forumType == ForumType.CommentList)
         {
             addCommentRow.Visible = false;
         }
         GetComments(ContentList);
     }
 }