Esempio n. 1
0
        private void LoaFeedback()
        {
            try
            {
                string id = Request.QueryString["idS"].ToString();
                var    dt = new DataTable();
                dt = ShowTimesService.ShowTimes_GetById(id);

                RptComment.DataSource = FeedbackService.Feedback_GetByTop("", "FilId='" + dt.Rows[0]["FilId"].ToString() + "'", "");
                RptComment.DataBind();
            }
            catch (Exception ex)
            {
                WebMsgBox.Show(ex.Message);
            }
        }