private void CopyAttachs(int NewsID)
        {
            using (DataTable DT = LightNews.GetAttachments(NewsID))
            {
                if (DT.Rows.Count == 0)
                {
                    return;
                }

                AttachsCount = DT.Rows.Count;

                foreach (DataRow Row in DT.Rows)
                {
                    DataRow NewRow = AttachmentsDataTable.NewRow();
                    NewRow["FileName"] = Row["FileName"];
                    NewRow["Path"]     = "server";
                    AttachmentsDataTable.Rows.Add(NewRow);
                }
            }
        }