Beispiel #1
0
        public string GetContentLink(string ids)
        {
            if (TaskType != 3)
            {
                return("");
            }
            string    links = "";
            DataTable dt    = conBll.SelByIDS(ids);

            foreach (DataRow row in dt.Rows)
            {
                links += "<a href='" + CustomerPageAction.customPath2 + "Content/ShowContent.aspx?Gid=" + row["GeneralID"] + "'>" + row["Title"] + "</a><br />";
            }
            return(links);
        }