protected void Page_Load(object sender, EventArgs e)
    {
        this.noteID = int.Parse(IMBC.FW.Util.WebUtil.GetRequestQueryString("noteID", "0"));

        this.uInfo = new UserInfo();

        NoteData data = new NoteData();

        this.note = data.RetrieveUserNoteInfo(noteID);

        userNm.Text      = uInfo.UserName;
        progTitle.Text   = note.progTitle;
        progImg.ImageUrl = note.progImage;
        comment.Text     = note.comment;
    }