Click here to Skip to main content
15,886,362 members
Articles / Web Development / ASP.NET

Microsoft Content Management Server Thumbnail Images Placeholder (C#)

Rate me:
Please Sign up or sign in to vote.
4.44/5 (8 votes)
17 May 20062 min read 89.2K   1.2K   28  
An XML placeholder control that displays thumbnails of images in a Resource Gallery.
//
//	ThumbnailImagesLabelItem.cs - � Questech Systems
//	This notice must stay intact for use. Not for resale.
//
using System;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace QuestechSystems.WebControls.Classes
{
    class ThumbnailImagesLabelItem
    {
        public string Label;
        public WebControl WebControl;
        public Control ValidationControl;
        public string DefaultValue;

        public ThumbnailImagesLabelItem(string label, WebControl webControl, string defaultValue, WebControl validationControl)
        {
            this.Label = label;
            this.WebControl = webControl;
            this.DefaultValue = defaultValue;
            this.ValidationControl = validationControl;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Canada Canada
A Microsoft Certified Professional Developer and Technology Specialist.

Experience and expertise in SharePoint 2016 / 2013 / 2010 / 2007.

Role ranges from a developer in a multi-person team to a solution consultant with expert-level skills, leading a project to completion status.

Proven experience working effectively in a team environment and a self-managed environment.

Comments and Discussions